From 82151aaffefbb460887d09f4f5e29092d3b669ba Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Tue, 7 Feb 2023 20:02:06 -0800 Subject: [PATCH] usb handle: ignore types (#1234) ignore types --- python/usb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/usb.py b/python/usb.py index 3323ac70..179ebe53 100644 --- a/python/usb.py +++ b/python/usb.py @@ -16,8 +16,8 @@ class PandaUsbHandle(BaseHandle): return self._libusb_handle.controlRead(request_type, request, value, index, length, timeout) def bulkWrite(self, endpoint: int, data: List[int], timeout: int = 0) -> int: - return self._libusb_handle.bulkWrite(endpoint, data, timeout) + return self._libusb_handle.bulkWrite(endpoint, data, timeout) # type: ignore def bulkRead(self, endpoint: int, length: int, timeout: int = 0) -> bytes: - return self._libusb_handle.bulkRead(endpoint, length, timeout) + return self._libusb_handle.bulkRead(endpoint, length, timeout) # type: ignore