diff --git a/.flake8 b/.flake8 index a77d68b..8f1ad95 100644 --- a/.flake8 +++ b/.flake8 @@ -17,7 +17,9 @@ extend-ignore = ANN101, # ANN102: Missing type annotation for cls in classmethod ANN102, - E722 + E722, + BLK100, + # BLK100: Missing type annotation for public function per-file-ignores = # F401: Module imported by unused (non-implicit modules) # TC002: Move third-party import '...' into a type-checking block diff --git a/src/tagoio_sdk/modules/Resources/Devices.py b/src/tagoio_sdk/modules/Resources/Devices.py index 2171fa1..a5e76e4 100644 --- a/src/tagoio_sdk/modules/Resources/Devices.py +++ b/src/tagoio_sdk/modules/Resources/Devices.py @@ -347,7 +347,7 @@ def sendDeviceData(self, deviceID: GenericID, data: Union[DataCreate, list[DataC :param GenericID deviceID: Device ID. - :param Data data: An array or one object with data to be send to TagoIO. + :param DataCreate data: An array or one object with data to be send to TagoIO. :rtype: Success message. @@ -380,7 +380,7 @@ def editDeviceData(self, deviceID: GenericID, updatedData: Union[DataEdit, list[ :param GenericID deviceID: Device ID. - :param Data data: A single or an array of updated data records. + :param DataEdit data: A single or an array of updated data records. :rtype: Success message.