a digital person for bluesky

Fix import error: Add List to typing imports in bsky_utils.py

Fixed NameError: name 'List' is not defined by adding List to the typing imports and removing redundant import inside function.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

Changed files
+1 -3
+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")