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 +