Skip to content

Commit fd6255b

Browse files
keitajclaude
andcommitted
fix: Remove unused imports (F401 lint errors)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 683ac76 commit fd6255b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_ws_market_data_feed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import time
44
from unittest.mock import MagicMock, patch
55

6-
from market_data import MarketDataManager, MarketData
6+
from market_data import MarketDataManager
77
from ttl_cache import TTLCacheMap
88
from ws.market_data_feed import MarketDataFeed
99

ws/market_data_feed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import logging
1717
import threading
1818
import time
19-
from typing import Any, Dict, List, Optional
19+
from typing import Any, Dict, List
2020

2121
logger = logging.getLogger(__name__)
2222

0 commit comments

Comments
 (0)