8000 Suggest is not None Checks for Optional Attributes in Type Annotations by hemant-iitkgp · Pull Request #17836 · python/mypy · GitHub
[go: up one dir, main page]

Skip to content

Suggest is not None Checks for Optional Attributes in Type Annotations #17836

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
issue 17036 solved
  • Loading branch information
hemant-iitkgp committed Sep 26, 2024
commit cf0c564f96262ea830675b663d16344cf559be9e
3 changes: 2 additions & 1 deletion mypy/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,8 @@ def has_no_attr(
context,
code=codes.UNION_ATTR,
)
self.note(
if(typ_format == '"None"'):
self.note(
'You can use "if <variable_name> is not None" check to guard against a None value',
context,
code=codes.UNION_ATTR,
Expand Down
Loading
0