We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1aafcd commit 1d9620dCopy full SHA for 1d9620d
mypy/errors.py
@@ -20,7 +20,11 @@
20
21
# Show error codes for some note-level messages (these usually appear alone
22
# and not as a comment for a previous error-level message).
23
-SHOW_NOTE_CODES: Final = {codes.ANNOTATION_UNCHECKED, codes.DEPRECATED}
+SHOW_NOTE_CODES: Final = {
24
+ codes.ANNOTATION_UNCHECKED,
25
+ codes.DEPRECATED,
26
+ codes.MAYBE_UNRECOGNIZED_STR_TYPEFORM,
27
+}
28
29
# Do not add notes with links to error code docs to errors with these codes.
30
# We can tweak this set as we get more experience about what is helpful and what is not.
0 commit comments