Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleades committed Dec 28, 2024
1 parent 1ec3466 commit 19cecd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stubs/docutils/docutils/readers/pep.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ from docutils.transforms import Transform

class Reader(standalone.Reader):

supported: ClassVar[tuple[str]] = ("pep",)
supported: ClassVar[tuple[Literal["pep"]]]

settings_spec: ClassVar[tuple[Any, ...]]

Expand All @@ -18,7 +18,7 @@ class Reader(standalone.Reader):

def get_transforms(self) -> list[type[Transform]]: ...

settings_default_overrides = {"pep_references": 1, "rfc_references": 1}
settings_default_overrides: ClassVar[dict[str, int]]

inliner_class: ClassVar[type[Inliner]]

Expand Down

0 comments on commit 19cecd5

Please sign in to comment.