We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bd91d5 commit 61b6476Copy full SHA for 61b6476
mypy/typeops.py
@@ -202,10 +202,9 @@ def class_callable(
202
# this case (although we should probably change it at some point)
203
# See testValueTypeWithNewInParentClass
204
# Also see testSelfTypeInGenericClassUsedFromAnotherGenericClass1
205
- if (
206
- not is_subtype(default_ret_type, explicit_type, ignore_type_params=True)
207
- or is_subtype(explicit_type, default_ret_type, ignore_type_params=True)
208
- ):
+ if not is_subtype(
+ default_ret_type, explicit_type, ignore_type_params=True
+ ) or is_subtype(explicit_type, default_ret_type, ignore_type_params=True):
209
ret_type = explicit_type
210
elif (
211
# We have to skip protocols, because it can be a subtype of a return type
0 commit comments