stdlib: add a few more defaults (#14618)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
This commit is contained in:
Jelle Zijlstra
2025-08-21 13:13:06 -07:00
committed by GitHub
parent f32d9f08bd
commit 82926783a4
3 changed files with 7 additions and 5 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
from _typeshed import Incomplete
from typing import ClassVar, Literal
from .. import fixer_base
@@ -13,5 +12,5 @@ class FixTupleParams(fixer_base.BaseFix):
def simplify_args(node): ...
def find_params(node): ...
def map_to_index(param_list, prefix=..., d: Incomplete | None = ...): ...
def map_to_index(param_list, prefix=[], d=None): ...
def tuple_name(param_list): ...