From 35aa61c651217663406c9cd6df404f85338b2d68 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Thu, 2 Apr 2026 14:17:43 +0900 Subject: style: fix lint and formatting issues across news collector and shared --- services/news-collector/tests/test_sec_edgar.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'services/news-collector/tests/test_sec_edgar.py') diff --git a/services/news-collector/tests/test_sec_edgar.py b/services/news-collector/tests/test_sec_edgar.py index a10b47a..5d4f69f 100644 --- a/services/news-collector/tests/test_sec_edgar.py +++ b/services/news-collector/tests/test_sec_edgar.py @@ -40,7 +40,9 @@ async def test_collect_parses_filings(collector): mock_datetime.now.return_value = datetime(2026, 4, 2, tzinfo=timezone.utc) mock_datetime.strptime = datetime.strptime - with patch.object(collector, "_fetch_recent_filings", new_callable=AsyncMock, return_value=[mock_response]): + with patch.object( + collector, "_fetch_recent_filings", new_callable=AsyncMock, return_value=[mock_response] + ): with patch("news_collector.collectors.sec_edgar.datetime", mock_datetime): items = await collector.collect() -- cgit v1.2.3