cmc/cleberg.net

My personal web garden & blog.

clone: git clone https://gitbay.org/cmc/cleberg.net.git

230d51c18f97c98b749638a6a8a02923be20895a

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-06-01T17:35:00Z

ruff formatting
 build.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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)