From 0ca0fb90d69ae547dcbde178e4d77319beba1332 Mon Sep 17 00:00:00 2001 From: Lars Noack Date: Tue, 15 Apr 2025 12:10:21 +0200 Subject: [PATCH] feat: added type hints --- stsg/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stsg/build.py b/stsg/build.py index d15a03a..332a01f 100644 --- a/stsg/build.py +++ b/stsg/build.py @@ -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] = []