Fix missing Tuple import in async_nfo_manager.py
Local Docker Build (Dev) / build-dev (pull_request) Successful in 24s

- Add Tuple to typing imports to resolve NameError
- Fixes container startup failure after modular refactoring
- Version bump to 2.0.4
This commit is contained in:
2025-10-04 11:06:07 -04:00
parent 08ff77760b
commit d0e4182d38
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
2.0.3
2.0.4
+1 -1
View File
@@ -4,7 +4,7 @@ High-performance async NFO file operations with concurrent processing
"""
import asyncio
from pathlib import Path
from typing import Optional, List, Dict, Any
from typing import Optional, List, Dict, Any, Tuple
from datetime import datetime
import xml.etree.ElementTree as ET