Fix linting errors

Remove unused imports
Disable redundant errors
Add notes for why errors are disabled
This commit is contained in:
2024-08-15 14:41:34 -04:00
committed by Ethan Paul
parent 6837a64121
commit f37463d172
9 changed files with 15 additions and 11 deletions

View File

@@ -23,6 +23,10 @@ from tox_poetry_installer import logger
if typing.TYPE_CHECKING:
from tox_poetry_installer import _poetry
# This is globally disabled to support the usage of the _poetry shadow module
# pylint: disable=import-outside-toplevel
PackageMap = Dict[str, List[PoetryPackage]]