Skip to content

Commit 18a695e

Browse files
um, I meant srcdir. Sure.
1 parent 6f47aee commit 18a695e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/source/command_line.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ of the above sections.
764764
:option:`mypy --help` output.
765765

766766
Note: the exact list of flags enabled by running :option:`--strict` may change
767-
over time. For the this version of mypy, the list is:
767+
over time. For this version of mypy, the list is:
768768

769769
.. include:: strict_list.rst
770770

docs/source/html_builder.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515

1616

1717
class MypyHTMLBuilder(StandaloneHTMLBuilder):
18-
strict_file: Path
18+
strict_file: Sphinx._StrPath
1919

2020
def __init__(self, app: Sphinx, env: BuildEnvironment) -> None:
2121
super().__init__(app, env)
2222
self._ref_to_doc = {}
23-
self.strict_file = Path(self.outdir) / "strict_list.rst"
23+
self.strict_file = Path(self.srcdir) / "strict_list.rst"
2424
self._add_strict_list()
2525

2626
def write_doc(self, docname: str, doctree: document) -> None:

0 commit comments

Comments
 (0)