Skip to content

Commit

Permalink
blocks BLK100 in flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuscardosodeveloper committed Nov 29, 2023
1 parent 118c8e0 commit 9bfcabe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/tagoio_sdk/modules/Resources/Devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 9bfcabe

Please sign in to comment.