Skip to content

Commit 08809f3

Browse files
committed
fix E501: shorten RSS feed description string to fit line limit
1 parent 2b0d231 commit 08809f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ async def blog_rss():
322322
"<channel>"
323323
f"<title>Sean-Michael — Notes from the field</title>"
324324
f"<link>{SITE}/blog</link>"
325-
f"<description>Notes on platform engineering, AI applications, and infrastructure.</description>"
325+
"<description>Notes on platform engineering, AI, and infrastructure.</description>"
326326
f'<atom:link href="{SITE}/blog/feed.xml" rel="self" type="application/rss+xml"/>'
327327
+ "".join(items)
328328
+ "</channel></rss>"

0 commit comments

Comments
 (0)