aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-06-01 12:35:00 -0500
committerChristian Cleberg <[email protected]>2026-06-01 12:35:00 -0500
commit230d51c18f97c98b749638a6a8a02923be20895a (patch)
treea8a3df3702ce0b02132efa4ef41ec0c4f70a4df1
parenta4fed83389b8ff2af0ee830cc0e4711e0f225b3c (diff)
downloadcleberg.net-230d51c18f97c98b749638a6a8a02923be20895a.tar.gz
cleberg.net-230d51c18f97c98b749638a6a8a02923be20895a.tar.bz2
cleberg.net-230d51c18f97c98b749638a6a8a02923be20895a.zip
ruff formatting
-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)