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 c3112fd commit 658a208Copy full SHA for 658a208
mypy/checkmember.py
@@ -907,7 +907,7 @@ def analyze_var(
907
call_type = get_proper_type(_analyze_member_access("__call__", typ, proto_mx))
908
if isinstance(call_type, CallableType):
909
call_type = call_type.copy_modified(is_bound=False)
910
- elif isinstance(call_type, Overloaded)
+ elif isinstance(call_type, Overloaded):
911
call_type = Overloaded(
912
[it.copy_modified(is_bound=False) for it in call_type.items()]
913
)
0 commit comments