From 0ca9fc0dca3ac44918cf915f75fc905e0e176b0a Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Sun, 6 Nov 2022 15:16:10 +0100 Subject: [PATCH] app.py: Add missing imports & type var already used --- server/app.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server/app.py b/server/app.py index ca6417b..d3923c2 100644 --- a/server/app.py +++ b/server/app.py @@ -22,6 +22,8 @@ from typing import ( Mapping, Optional, Set, + Type, + TypeVar, Union, ) @@ -64,6 +66,9 @@ from entertainment_decider.extractors.media import ( ) +T = TypeVar("T") + + #### # Logging Config ####