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