Skip to content

Commit fe5e404

Browse files
committed
fix order
1 parent aa56a2f commit fe5e404

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mypy/stubdoc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ class FunctionSig(NamedTuple):
7777
name: str
7878
args: list[ArgSig]
7979
ret_type: str | None
80-
pos_only_index: int | None = None
81-
kwarg_only_index: int | None = None
8280
type_args: str = "" # TODO implement in stubgenc and remove the default
8381
docstring: str | None = None
82+
pos_only_index: int | None = None
83+
kwarg_only_index: int | None = None
8484

8585
def is_special_method(self) -> bool:
8686
return bool(

0 commit comments

Comments
 (0)