Fix python lint

This commit is contained in:
Charles-Edouard de la Vergne
2024-04-30 17:34:57 +02:00
parent f3eb4f7148
commit 6dd70e11a8
7 changed files with 23 additions and 18 deletions

View File

@@ -7,11 +7,16 @@ disable = C0114, # missing-module-docstring
C0116, # missing-function-docstring
C0103, # invalid-name
R0801, # duplicate-code
R0913 # too-many-arguments
R0903, # too-few-public-methods
R0913, # too-many-arguments
R0914, # too-many-locals
W0603, # global-statement
E0401 # import-error
extension-pkg-whitelist=hid
max-line-length = 130
[pycodestyle]
max-line-length = 90
max-line-length = 130
[mypy-hid.*]
ignore_missing_imports = True