diff options
| author | Christian Cleberg <[email protected]> | 2026-06-01 12:35:00 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-06-01 12:35:00 -0500 |
| commit | 230d51c18f97c98b749638a6a8a02923be20895a (patch) | |
| tree | a8a3df3702ce0b02132efa4ef41ec0c4f70a4df1 /build.py | |
| parent | a4fed83389b8ff2af0ee830cc0e4711e0f225b3c (diff) | |
| download | cleberg.net-230d51c18f97c98b749638a6a8a02923be20895a.tar.gz cleberg.net-230d51c18f97c98b749638a6a8a02923be20895a.tar.bz2 cleberg.net-230d51c18f97c98b749638a6a8a02923be20895a.zip | |
ruff formatting
Diffstat (limited to 'build.py')
| -rw-r--r-- | build.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |
