Skip to content

Commit 8cecd14

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mypy/checkexpr.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3298,7 +3298,9 @@ def apply_generic_arguments(
32983298
skip_unsatisfied=skip_unsatisfied,
32993299
)
33003300

3301-
def check_any_type_call(self, args: list[Expression], arg_kinds: list[ArgKind], callee: Type, context: Context) -> tuple[Type, Type]:
3301+
def check_any_type_call(
3302+
self, args: list[Expression], arg_kinds: list[ArgKind], callee: Type, context: Context
3303+
) -> tuple[Type, Type]:
33023304
arg_types = self.infer_arg_types_in_empty_context(args)
33033305
for arg_type, arg_kind in zip(arg_types, arg_kinds):
33043306
arg_type = get_proper_type(arg_type)

0 commit comments

Comments
 (0)