Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 28, 2025
commit 8cecd14fea444ec820694f2dfd9113b899c5b990
4 changes: 3 additions & 1 deletion mypy/checkexpr.py
Original file line number Diff line number Diff line change
Expand Up @@ -3298,7 +3298,9 @@ def apply_generic_arguments(
skip_unsatisfied=skip_unsatisfied,
)

def check_any_type_call(self, args: list[Expression], arg_kinds: list[ArgKind], callee: Type, context: Context) -> tuple[Type, Type]:
def check_any_type_call(
self, args: list[Expression], arg_kinds: list[ArgKind], callee: Type, context: Context
) -> tuple[Type, Type]:
arg_types = self.infer_arg_types_in_empty_context(args)
for arg_type, arg_kind in zip(arg_types, arg_kinds):
arg_type = get_proper_type(arg_type)
Expand Down
Loading