diff options
author | Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> | 2021-11-23 20:10:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 20:10:29 +0100 |
commit | d58a7c019df0bde1ae5edde35a628b861715c758 (patch) | |
tree | a5479c14dfab21689a8b538f510fdde7ae1ad664 /tests/test_func.py | |
parent | 2c687133e4fcdd73ae3afa2e79be2160b150bb82 (diff) | |
download | pylint-git-d58a7c019df0bde1ae5edde35a628b861715c758.tar.gz |
Fix typo in pylintrc for useless-suppression (#5303)
* Fix typo in pylintrc for useless-suppression
* Fix CI for information messages
* Remove useless disables
* Update CI and docs for 3.8+
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to 'tests/test_func.py')
-rw-r--r-- | tests/test_func.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_func.py b/tests/test_func.py index 914fbbc92..575773bb9 100644 --- a/tests/test_func.py +++ b/tests/test_func.py @@ -55,7 +55,6 @@ class LintTestUsingModule: def _test_functionality(self) -> None: if self.module: tocheck = [self.package + "." + self.module] - # pylint: disable=not-an-iterable; can't handle boolean checks for now if self.depends: tocheck += [ self.package + f".{name.replace('.py', '')}" for name, _ in self.depends |