Skip to content
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

Added error code for overlapping function signatures #17597

Merged
merged 15 commits into from
Sep 18, 2024
Merged
Prev Previous commit
Next Next commit
Update mypy/errorcodes.py
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
  • Loading branch information
katconnors and AlexWaygood committed Jul 29, 2024
commit bf1cae566845134fcf5a313bc59696d350c521ec
1 change: 1 addition & 0 deletions mypy/errorcodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ def __hash__(self) -> int:
"overloaded-function-matching",
"Warn user about signature matching for overloaded functions.",
"General",
katconnors marked this conversation as resolved.
Show resolved Hide resolved
sub_code_of=MISC,
)

# Syntax errors are often blocking.
Expand Down
Loading