Skip to content

Commit 56e74d0

Browse files
authored
[decorator] Fix FunctionMaker attributes (#14909)
1 parent e389c7b commit 56e74d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stubs/decorator/decorator.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class FunctionMaker:
2020
args: list[str]
2121
varargs: str | None
2222
varkw: str | None
23-
defaults: tuple[Any, ...]
23+
defaults: tuple[Any, ...] | None
2424
kwonlyargs: list[str]
25-
kwonlydefaults: str | None
25+
kwonlydefaults: _dict[str, Any] | None
2626
shortsignature: str | None
2727
name: str
2828
doc: str | None

0 commit comments

Comments
 (0)