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 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")