+1
-3
bsky_utils.py
+1
-3
bsky_utils.py
···
1
1
import os
2
2
import logging
3
-
from typing import Optional, Dict, Any
3
+
from typing import Optional, Dict, Any, List
4
4
from atproto_client import Client, Session, SessionEvent, models
5
5
6
6
# Configure logging
···
453
453
List of responses from sending the replies or None if failed
454
454
"""
455
455
try:
456
-
from typing import List
457
-
458
456
# Validate input
459
457
if not reply_messages or len(reply_messages) == 0:
460
458
logger.error("Reply messages list cannot be empty")