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 c3f60e3 commit 4de85d3Copy full SHA for 4de85d3
repositories.py
@@ -1,14 +1,12 @@
1
-import pathlib
2
import re
3
from collections.abc import Iterator
+from pathlib import Path
4
5
from docutils import core
6
from docutils.nodes import table, row
7
8
9
-def get_languages_and_repos(
10
- devguide_dir: pathlib.Path,
11
-) -> Iterator[tuple[str, str | None]]:
+def get_languages_and_repos(devguide_dir: Path) -> Iterator[tuple[str, str | None]]:
12
translating = devguide_dir.joinpath('documentation/translating.rst').read_text()
13
doctree = core.publish_doctree(translating)
14
0 commit comments