Skip to content

Commit 658a208

Browse files
authored
Fix typo
1 parent c3112fd commit 658a208

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/checkmember.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ def analyze_var(
907907
call_type = get_proper_type(_analyze_member_access("__call__", typ, proto_mx))
908908
if isinstance(call_type, CallableType):
909909
call_type = call_type.copy_modified(is_bound=False)
910-
elif isinstance(call_type, Overloaded)
910+
elif isinstance(call_type, Overloaded):
911911
call_type = Overloaded(
912912
[it.copy_modified(is_bound=False) for it in call_type.items()]
913913
)

0 commit comments

Comments
 (0)