aboutsummaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'build.py')
-rw-r--r--build.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.py b/build.py
index d3147bc..f7b02b0 100644
--- a/build.py
+++ b/build.py
@@ -491,7 +491,9 @@ def get_tags_html(content_dir="./content/blog"):
)
ordered_tags = [tag for tag in preferred_tag_order if tag in tag_map]
- ordered_tags.extend(sorted(tag for tag in tag_map if tag not in preferred_tag_order))
+ ordered_tags.extend(
+ sorted(tag for tag in tag_map if tag not in preferred_tag_order)
+ )
for tag in ordered_tags:
tag_map[tag].sort(key=lambda x: x["date_obj"], reverse=True)