summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorZen Lee <53538590+zenlyj@users.noreply.github.com>2023-04-16 02:01:37 +0800
committerGitHub <noreply@github.com>2023-04-15 20:01:37 +0200
commit6028f202c4b637f9edc54cef815586a54fd65958 (patch)
tree054b07291b3edb59a244956dc28c14e687642544 /doc
parent2db55f6a48962aa7ff4cc3b0ee4b37177f605bdc (diff)
downloadpylint-git-6028f202c4b637f9edc54cef815586a54fd65958.tar.gz
Fix `used-before-assignment` TYPE_CHECKING false negatives (#8431)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/fragments/8198.bugfix4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/whatsnew/fragments/8198.bugfix b/doc/whatsnew/fragments/8198.bugfix
new file mode 100644
index 000000000..61b4028ce
--- /dev/null
+++ b/doc/whatsnew/fragments/8198.bugfix
@@ -0,0 +1,4 @@
+Fix ``used-before-assignment`` false negative when TYPE_CHECKING imports
+are used in multiple scopes.
+
+Closes #8198