Skip to content

Commit dcd3f5f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 698e1eb commit dcd3f5f

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

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

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -303,17 +303,29 @@ 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
def indent(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
308310
def bullet(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
309311
def enumerator(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
310-
def field_marker(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
311-
def option_marker(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
312+
def field_marker(
313+
self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None
314+
) -> None: ...
315+
def option_marker(
316+
self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None
317+
) -> None: ...
312318
def doctest(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
313319
def line_block(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
314-
def grid_table_top(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
315-
def simple_table_top(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
316-
def explicit_markup(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
320+
def grid_table_top(
321+
self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None
322+
) -> None: ...
323+
def simple_table_top(
324+
self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None
325+
) -> None: ...
326+
def explicit_markup(
327+
self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None
328+
) -> None: ...
317329
def anonymous(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
318330
def line(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
319331
def text(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
@@ -385,7 +397,9 @@ class Text(RSTState):
385397

386398
class SpecializedText(Text):
387399
def eof(self, context: Any) -> list[Any]: ...
388-
def invalid_input(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
400+
def invalid_input(
401+
self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None
402+
) -> None: ...
389403
def blank(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
390404
def indent(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...
391405
def underline(self, match: Match[str] | None = None, context: Any | None = None, next_state: str | None = None) -> None: ...

0 commit comments

Comments
 (0)