style: fix code formatting with black

This commit is contained in:
aserper
2025-12-13 00:30:14 -05:00
parent 9439b6c8fb
commit 37da450194
3 changed files with 15 additions and 4 deletions

4
bot.py
View File

@@ -86,7 +86,9 @@ class MastodonRSSBot:
try:
feed = feedparser.parse(feed_url)
if hasattr(feed, "bozo_exception"):
print(f"Warning: Feed parsing issue for {feed_url}: {feed.bozo_exception}")
print(
f"Warning: Feed parsing issue for {feed_url}: {feed.bozo_exception}"
)
return feed
except Exception as e:
print(f"Error parsing feed {feed_url}: {e}")