summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-04-07 11:53:06 +0000
committerGitHub <noreply@github.com>2023-04-07 11:53:06 +0000
commited67cc806606668bec945c9b62f006d7aad02664 (patch)
tree108fd329b285642b56d01edd65ebfb46da25eea9 /doc
parent011c6ac1a4efa41ce82fb230ca06f97ae50d662e (diff)
downloadpylint-git-ed67cc806606668bec945c9b62f006d7aad02664.tar.gz
Fix typelias `invalid-name` false positives for Union variables without assignment. (#8541) (#8548)
(cherry picked from commit cb255eaaed8bba6bec1f7bf5d4cde15821c1dd46) Co-authored-by: Yilei "Dolee" Yang <yileiyang@google.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/fragments/8540.false_positive4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/whatsnew/fragments/8540.false_positive b/doc/whatsnew/fragments/8540.false_positive
new file mode 100644
index 000000000..543913637
--- /dev/null
+++ b/doc/whatsnew/fragments/8540.false_positive
@@ -0,0 +1,4 @@
+`Union` typed variables without assignment are no longer treated as
+`TypeAlias`.
+
+Closes #8540