We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa56a2f commit fe5e404Copy full SHA for fe5e404
mypy/stubdoc.py
@@ -77,10 +77,10 @@ class FunctionSig(NamedTuple):
77
name: str
78
args: list[ArgSig]
79
ret_type: str | None
80
- pos_only_index: int | None = None
81
- kwarg_only_index: int | None = None
82
type_args: str = "" # TODO implement in stubgenc and remove the default
83
docstring: str | None = None
+ pos_only_index: int | None = None
+ kwarg_only_index: int | None = None
84
85
def is_special_method(self) -> bool:
86
return bool(
0 commit comments