chore: replace flake8 and black with ruff

This commit is contained in:
aserper
2025-12-13 23:48:58 -05:00
parent 6c4ef36aa8
commit 561377d517
9 changed files with 79 additions and 52 deletions

View File

@@ -65,9 +65,7 @@ class TestRSSFeedIntegration(unittest.TestCase):
"""Test parsing Atom feeds"""
# Create mock Atom feed object
mock_feed = Mock()
mock_feed.entries = [
{"title": "Atom Article", "link": "https://example.com/atom1"}
]
mock_feed.entries = [{"title": "Atom Article", "link": "https://example.com/atom1"}]
mock_parse.return_value = mock_feed
mock_instance = Mock()