Skip to content

Commit 61b6476

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 2bd91d5 commit 61b6476

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

mypy/typeops.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,9 @@ def class_callable(
202202
# this case (although we should probably change it at some point)
203203
# See testValueTypeWithNewInParentClass
204204
# 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-
):
205+
if not is_subtype(
206+
default_ret_type, explicit_type, ignore_type_params=True
207+
) or is_subtype(explicit_type, default_ret_type, ignore_type_params=True):
209208
ret_type = explicit_type
210209
elif (
211210
# We have to skip protocols, because it can be a subtype of a return type

0 commit comments

Comments
 (0)