From d0e4182d384d5d62e50b447edfe6cb662feb3422 Mon Sep 17 00:00:00 2001 From: sbcrumb Date: Sat, 4 Oct 2025 11:06:07 -0400 Subject: [PATCH] Fix missing Tuple import in async_nfo_manager.py - Add Tuple to typing imports to resolve NameError - Fixes container startup failure after modular refactoring - Version bump to 2.0.4 --- VERSION | 2 +- core/async_nfo_manager.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 50ffc5a..2165f8f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.3 +2.0.4 diff --git a/core/async_nfo_manager.py b/core/async_nfo_manager.py index 372a777..33fb337 100644 --- a/core/async_nfo_manager.py +++ b/core/async_nfo_manager.py @@ -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