From aff6179ddbd2a1b9a1a1d965a70f15debb314384 Mon Sep 17 00:00:00 2001 From: SBCrumb Date: Thu, 11 Sep 2025 09:46:23 -0400 Subject: [PATCH] Fix missing typing imports in NFOManager MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🐛 Fix: • Add missing Dict, Any imports from typing module • Resolves NameError: name 'Dict' is not defined --- core/nfo_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/nfo_manager.py b/core/nfo_manager.py index 016c9af..e4c2daa 100644 --- a/core/nfo_manager.py +++ b/core/nfo_manager.py @@ -6,7 +6,7 @@ import os import re from pathlib import Path from datetime import datetime, timezone -from typing import Optional +from typing import Optional, Dict, Any import xml.etree.ElementTree as ET