From 2dfdabed260bfd92de3e0cdbbac86e55aa9b70c8 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Fri, 13 Sep 2024 15:40:19 +0200 Subject: [PATCH] lint/sphinx --- rwx/prj/sphinx.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rwx/prj/sphinx.py b/rwx/prj/sphinx.py index 3cef334..afa0901 100644 --- a/rwx/prj/sphinx.py +++ b/rwx/prj/sphinx.py @@ -1,3 +1,5 @@ +"""Project consisting only of a Sphinx documentation.""" + from os import path from sphinx.cmd.build import build_main @@ -10,7 +12,7 @@ class SphinxProject(Project): def __init__(self, file_path: str) -> None: super().__init__(file_path) - def build(self): + def build(self) -> None: output_root: str = path.join(self.root, "out") wipe(output_root) arguments: list[str] = [