Skip to content

Commit 179a78c

Browse files
committed
chore: fix typing
1 parent 4f85240 commit 179a78c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

roborock/data/v1/v1_clean_modes.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
from __future__ import annotations
22

3-
from roborock.device_features import DeviceFeatures
3+
import typing
44

55
from ..code_mappings import RoborockModeEnum
66

7+
if typing.TYPE_CHECKING:
8+
from roborock.device_features import DeviceFeatures
9+
710

811
class VacuumModes(RoborockModeEnum):
912
GENTLE = ("gentle", 105)

0 commit comments

Comments
 (0)