diff options
author | Sergei Lebedev <185856+superbobry@users.noreply.github.com> | 2021-06-27 19:11:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-27 20:11:54 +0200 |
commit | 3d6389b97e8f9416304185a1babfe49e8a0dc348 (patch) | |
tree | 84cd6ce8b03f4317d290fc6ac7bd005ea4e0a6aa /CONTRIBUTORS.txt | |
parent | 1e55ae64624d28c5fe8b63ad7979880ee2e6ef3f (diff) | |
download | pylint-git-3d6389b97e8f9416304185a1babfe49e8a0dc348.tar.gz |
VariableChecker now accounts for attribute lookups in type comments (#4604)
* VariableChecker now accounts for attribute lookups in type comments
Prior to this commit VariableChecker did not recurse into attribute lookups
in type comments. This lead to false positive unused-import messages in e.g.
import collections
d = ... # type: collections.OrderedDict
Fixes #4603
Diffstat (limited to 'CONTRIBUTORS.txt')
-rw-r--r-- | CONTRIBUTORS.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index b1de7ff30..05e4a31e1 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -503,3 +503,5 @@ contributors: * Markus Siebenhaar: contributor * Lorena Buciu (lorena-b): contributor + +* Sergei Lebedev (superbobry): contributor |