diff options
author | Maxim Devaev <[email protected]> | 2024-11-02 21:04:57 +0200 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2024-11-02 21:04:57 +0200 |
commit | 1e277c0f06f25e67a35a1b2910ed59333f97f6c0 (patch) | |
tree | d5f66a338f9b9fe0bbefa5de25fcebd457dd248f /testenv | |
parent | 95597b15e45fc38c52613d4cca4ec6309f8a2c82 (diff) |
lint fix
Diffstat (limited to 'testenv')
-rw-r--r-- | testenv/Dockerfile | 1 | ||||
-rw-r--r-- | testenv/linters/pylint.ini | 1 | ||||
-rw-r--r-- | testenv/requirements.txt | 1 |
3 files changed, 2 insertions, 1 deletions
diff --git a/testenv/Dockerfile b/testenv/Dockerfile index e8415828..67fcd748 100644 --- a/testenv/Dockerfile +++ b/testenv/Dockerfile @@ -44,7 +44,6 @@ RUN pacman --noconfirm --ask=4 -Syy \ python-aiohttp \ python-aiofiles \ python-async-lru \ - python-periphery \ python-passlib \ python-pyotp \ python-qrcode \ diff --git a/testenv/linters/pylint.ini b/testenv/linters/pylint.ini index 978a2e43..fd2d8b35 100644 --- a/testenv/linters/pylint.ini +++ b/testenv/linters/pylint.ini @@ -38,6 +38,7 @@ disable = unspecified-encoding, consider-using-f-string, unnecessary-lambda-assignment, + too-many-positional-arguments, # https://github.com/PyCQA/pylint/issues/3882 [CLASSES] diff --git a/testenv/requirements.txt b/testenv/requirements.txt index 3f848431..36d2407a 100644 --- a/testenv/requirements.txt +++ b/testenv/requirements.txt @@ -1,3 +1,4 @@ +python-periphery pyserial-asyncio pyghmi spidev |