Using TYPE_CHECKING for type hints

Moving runtime imports to appropriate locations
Using string literal type annotations
Importing shared utilities through the utils package
This commit is contained in:
pacnpal
2024-11-17 21:24:49 +00:00
parent e997c6f6b9
commit 439cf5ff07
5 changed files with 32 additions and 17 deletions

View File

@@ -1,6 +1,7 @@
"""Enhanced queue manager for video processing"""
import asyncio
from enum import Enum
import logging
from dataclasses import dataclass, field
from typing import Optional, Tuple, Dict, Any, List, Set, Callable