flake8 fixes

This commit is contained in:
Jesse Hills 2022-09-27 13:17:05 +13:00
parent a671b723d0
commit 3f22d6ee5e
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -25,7 +25,6 @@ from .api_pb2 import ( # type: ignore
BluetoothGATTReadRequest,
BluetoothGATTReadResponse,
BluetoothGATTWriteRequest,
BluetoothGATTWriteResponse,
BluetoothLEAdvertisementResponse,
ButtonCommandRequest,
CameraImageRequest,
@ -95,7 +94,6 @@ from .model import (
BluetoothDeviceRequestType,
BluetoothGATTRead,
BluetoothGATTServices,
BluetoothGATTWrite,
BluetoothLEAdvertisement,
ButtonInfo,
CameraInfo,
@ -440,7 +438,7 @@ class APIClient:
async with async_timeout.timeout(timeout):
await fut
except asyncio.TimeoutError as err:
raise TimeoutAPIError(f"Timeout waiting for connect response") from err
raise TimeoutAPIError("Timeout waiting for connect response") from err
async def bluetooth_device_disconnect(self, address: int) -> None:
self._check_authenticated()