Skip to content

Commit e93ceb8

Browse files
committed
.
1 parent 662fbad commit e93ceb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/checkexpr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2497,7 +2497,7 @@ def missing_classvar_callable_note(
24972497

24982498
def check_var_args_kwargs(
24992499
self, arg_types: list[Type], arg_kinds: list[ArgKind], context: Context
2500-
):
2500+
) -> None:
25012501
for arg_type, arg_kind in zip(arg_types, arg_kinds):
25022502
arg_type = get_proper_type(arg_type)
25032503
if arg_kind == nodes.ARG_STAR and not self.is_valid_var_arg(arg_type):

0 commit comments

Comments
 (0)