Skip to content

Commit 4124634

Browse files
committed
fix: remove python 3.11 incompatibility
1 parent 81f1718 commit 4124634

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

roborock/devices/v1_channel.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import logging
1010
from collections.abc import Callable
1111
from dataclasses import dataclass
12-
from typing import Any, TypeVar, override
12+
from typing import Any, TypeVar
1313

1414
from roborock.data import HomeDataDevice, NetworkInfo, RoborockBase, UserData
1515
from roborock.exceptions import RoborockException
@@ -74,7 +74,6 @@ def __init__(self, rpc_strategies: list[RpcStrategy]) -> None:
7474
"""Initialize the RpcChannel with on ordered list of strategies."""
7575
self._rpc_strategies = rpc_strategies
7676

77-
@override
7877
async def send_command(
7978
self,
8079
method: CommandType,

0 commit comments

Comments
 (0)