feat: added type hints

This commit is contained in:
Hazel 2025-04-15 12:10:21 +02:00
parent 603a7f5942
commit 0ca0fb90d6

View File

@ -100,7 +100,7 @@ class ArticleOverview:
exit(1)
ARTICLE_LAKE[self.slug] = self
self.url = url + "/" + self.slug
self.url: str = url + "/" + self.slug
self.dist_path = Path(DIST_DIRECTORY, self.url.strip("/"))
self.child_articles: List[ArticleOverview] = []