Move CanHandle to python/ (#1550)

This commit is contained in:
Adeeb Shihadeh
2023-08-03 23:10:16 -07:00
committed by GitHub
parent 5af25e2a67
commit e7894e6770
5 changed files with 11 additions and 7 deletions

View File

@@ -15,7 +15,7 @@ class BaseHandle(ABC):
...
@abstractmethod
def controlWrite(self, request_type: int, request: int, value: int, index: int, data, timeout: int = TIMEOUT) -> int:
def controlWrite(self, request_type: int, request: int, value: int, index: int, data, timeout: int = TIMEOUT, expect_disconnect: bool = False):
...
@abstractmethod