Ensure from __future__ import annotations in irobot_base (#51554)

This commit is contained in:
J. Nick Koston 2021-06-06 07:59:58 -10:00 committed by GitHub
parent 5bbf0ca6ab
commit f221deef2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,6 @@
"""Base class for iRobot devices.""" """Base class for iRobot devices."""
from __future__ import annotations
import asyncio import asyncio
import logging import logging