summaryrefslogtreecommitdiff
path: root/sphinx/project.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/project.py')
-rw-r--r--sphinx/project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/project.py b/sphinx/project.py
index 89e003b22..cb4a71f58 100644
--- a/sphinx/project.py
+++ b/sphinx/project.py
@@ -28,7 +28,7 @@ class Project:
#: The name of documents belongs to this project.
self.docnames: set[str] = set()
- def restore(self, other: "Project") -> None:
+ def restore(self, other: Project) -> None:
"""Take over a result of last build."""
self.docnames = other.docnames