From f07f87735cb7ab3c63a12bfbde10906e35f8f213 Mon Sep 17 00:00:00 2001 From: Miralia <77816406+Miralia@users.noreply.github.com> Date: Tue, 24 Jun 2025 19:52:14 +0800 Subject: [PATCH] fix --- app/core/meta/streamingplatform.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/core/meta/streamingplatform.py b/app/core/meta/streamingplatform.py index dc0b3439..4dccb4c3 100644 --- a/app/core/meta/streamingplatform.py +++ b/app/core/meta/streamingplatform.py @@ -1,4 +1,4 @@ -from typing import Dict, Optional, List, Tuple +from typing import Optional, List, Tuple from app.utils.singleton import Singleton @@ -308,4 +308,5 @@ class StreamingPlatforms(metaclass=Singleton): """ if name is None: return False - return name.upper() in self._lookup_cache \ No newline at end of file + return name.upper() in self._lookup_cache +