Skip to content

Commit 5c0e009

Browse files
authored
Fix property
1 parent 658a208 commit 5c0e009

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
@@ -909,7 +909,7 @@ def analyze_var(
909909
call_type = call_type.copy_modified(is_bound=False)
910910
elif isinstance(call_type, Overloaded):
911911
call_type = Overloaded(
912-
[it.copy_modified(is_bound=False) for it in call_type.items()]
912+
[it.copy_modified(is_bound=False) for it in call_type.items]
913913
)
914914

915915
# Bound variables with callable types are treated like methods

0 commit comments

Comments
 (0)