Skip to content

Commit 07b6987

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f0c1fdc commit 07b6987

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

mypy/erasetype.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,6 @@ def shallow_erase_type_for_equality(typ: Type) -> ProperType:
314314
return p_typ
315315
any_type = AnyType(TypeOfAny.special_form)
316316
return p_typ.copy_modified(
317-
arg_types=[any_type for _ in p_typ.arg_types],
318-
ret_type=any_type,
319-
variables=(),
317+
arg_types=[any_type for _ in p_typ.arg_types], ret_type=any_type, variables=()
320318
)
321319
return p_typ

0 commit comments

Comments
 (0)