Skip to content

Commit

Permalink
fix: remove unnecessary keyword-only constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
bzoracler committed May 10, 2024
1 parent 1135b28 commit 9655775
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stdlib/_ast.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ class FunctionDef(stmt):
body: list[stmt],
decorator_list: list[expr],
returns: expr | None = None,
*,
type_comment: str | None = None,
*,
type_params: list[type_param],
**kwargs: Unpack[_Attributes],
) -> None: ...
Expand Down Expand Up @@ -160,8 +160,8 @@ class AsyncFunctionDef(stmt):
body: list[stmt],
decorator_list: list[expr],
returns: expr | None = None,
*,
type_comment: str | None = None,
*,
type_params: list[type_param],
**kwargs: Unpack[_Attributes],
) -> None: ...
Expand Down

0 comments on commit 9655775

Please sign in to comment.