Skip to content

Commit b1a0822

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 139c522 commit b1a0822

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

stubs/docutils/docutils/parsers/rst/states.pyi

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,9 @@ class RFC2822Body(Body):
303303
def rfc2822_field(self, match: Match[str]) -> tuple[nodes.field, bool]: ...
304304

305305
class SpecializedBody(Body):
306-
def invalid_input(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
306+
def invalid_input(
307+
self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None
308+
) -> None: ...
307309
# The following base class methods are overridden by setting equal to `invalid_input`, and then overriden once again in subclasses
308310
def indent(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ... # type: ignore[override]
309311
def bullet(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ... # type: ignore[override]
@@ -386,7 +388,9 @@ class Text(RSTState):
386388

387389
class SpecializedText(Text):
388390
def eof(self, context: Any) -> list[Any]: ...
389-
def invalid_input(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
391+
def invalid_input(
392+
self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None
393+
) -> None: ...
390394
def blank(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
391395
def indent(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
392396
def underline(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...

0 commit comments

Comments
 (0)