Fix syntax error in queue.py import statement

- Corrected malformed import statement that had logging_utils import inside database import parentheses
- Separated the imports properly to fix SyntaxError
parent 4fc76f92
......@@ -20,10 +20,10 @@ Queue management for concurrent processing.
from typing import List, Dict, Any, Optional
from .database import (
from .logging_utils import log_message
add_to_queue, update_queue_status,
get_queue_status, get_user_queue_items, get_queue_position
)
from .logging_utils import log_message
class QueueManager:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment