We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7864edb commit e2d0c45Copy full SHA for e2d0c45
stubs/docutils/docutils/readers/standalone.pyi
@@ -1,11 +1,11 @@
1
from typing import ClassVar, Final, TypeVar
2
3
-from docutils import readers
+from docutils import nodes, readers
4
5
__docformat__: Final = "reStructuredText"
6
7
_S = TypeVar("_S", bound=str | bytes)
8
9
class Reader(readers.Reader[_S]):
10
- document: None # type: ignore[assignment]
+ document: nodes.document | None # type: ignore[assignment]
11
config_section_dependencies: ClassVar[tuple[str, ...]]
0 commit comments