Skip to content
This repository has been archived by the owner on Dec 27, 2021. It is now read-only.

Commit

Permalink
Fix kw_defaults field type for ast.argument (python#4740)
Browse files Browse the repository at this point in the history
  • Loading branch information
ky-gog authored Nov 1, 2020
1 parent d379d4c commit 1ff92dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/3/_ast.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ class arguments(AST):
args: typing.List[arg]
vararg: Optional[arg]
kwonlyargs: typing.List[arg]
kw_defaults: typing.List[expr]
kw_defaults: typing.List[Optional[expr]]
kwarg: Optional[arg]
defaults: typing.List[expr]

Expand Down

0 comments on commit 1ff92dd

Please sign in to comment.