8000 feat: better message if method incompatible with base class by atakiar · Pull Request #10572 · python/mypy · GitHub
[go: up one dir, main page]

Skip to content

feat: better message if method incompatible with base class #10572

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

Merged
merged 18 commits into from
Jul 10, 2021
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
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
fix: missing positional argument in call to ErrorInfo
  • Loading branch information
atakiar committed Jun 10, 2021
commit 1736224e5f275a38ac3a3d4a1fdb99e154725352
1 change: 1 addition & 0 deletions mypy/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,7 @@ def report_hidden_errors(self, info: ErrorInfo) -> None:
code=None,
blocker=False,
only_once=True,
allow_dups=False,
origin=info.origin,
target=info.target,
)
Expand Down
0