fix: fixes
Some checks failed
Integration Testing / Test Integration (2025.9.4, 3.13) (push) Failing after 38s
Code Quality Check / Code Quality Analysis (push) Successful in 15s

Signed-off-by: Rafal Zielinski <sq4ind@gmail.com>
This commit is contained in:
2025-09-28 15:58:07 +01:00
parent e0edf6f865
commit 86f60e72b7
21 changed files with 147 additions and 466 deletions

12
.flake8
View File

@@ -1,12 +1,4 @@
[flake8]
max-line-length = 127
exclude =
.git,
__pycache__,
.venv,
venv,
.pytest_cache
ignore =
E203, # whitespace before ':'
W503, # line break before binary operator
E501, # line too long (handled by black)
exclude = .git,__pycache__,.venv,venv,.pytest_cache
ignore = E203,W503,E501