Skip to content

Commit 3eb9ff7

Browse files
authored
fix __match_args__ attribute name (#10813)
1 parent bd4462c commit 3eb9ff7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/_ast.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ if sys.version_info >= (3, 12):
602602
name: _Identifier
603603

604604
class TypeAlias(stmt):
605-
__match_args__ = ("name", "typeparams", "value")
605+
__match_args__ = ("name", "type_params", "value")
606606
name: Name
607607
type_params: list[type_param]
608608
value: expr

0 commit comments

Comments
 (0)