Skip to content

Commit 798c3bd

Browse files
committed
Fix type annotations
1 parent 1c43ce0 commit 798c3bd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

exchange_radar/scheduler/alerts/market_sentiment.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111

1212
logger = logging.getLogger(__name__)
1313

14-
alerts_cache = defaultdict(lambda: defaultdict(dict))
14+
alerts_cache: defaultdict[str, defaultdict[str, dict]] = defaultdict(lambda: defaultdict(dict))
15+
1516

1617
TASK_LOCK = "MARKET-SENTIMENT-LOCK"
1718

0 commit comments

Comments
 (0)