Skip to content

Commit 5807abb

Browse files
committed
fixup
1 parent 28ae6f8 commit 5807abb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stubs/docutils/docutils/statemachine.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ from typing_extensions import Self
66
__docformat__: str
77

88
_Context = TypeVar("_Context")
9-
_TransitionMethod: TypeAlias = Callable[[Match[str], _Context, str], tuple[_Context, str | None, list[str]]]
10-
_TransitionResult: TypeAlias = tuple[_Context, str, list[str]]
9+
_TransitionResult: TypeAlias = tuple[_Context, str | None, list[str]]
10+
_TransitionMethod: TypeAlias = Callable[[Match[str], _Context, str], _TransitionResult[_Context]]
1111

1212
class StateMachine(Generic[_Context]):
1313
input_lines: StringList | None

0 commit comments

Comments
 (0)