From ff5c08d635b3d5ab9e2340448b87c475a329121b Mon Sep 17 00:00:00 2001 From: rababerladuseladim Date: Fri, 15 Dec 2023 12:32:03 +0100 Subject: [PATCH] remove ModelValuesT Co-authored-by: Nicolas Drebenstedt Signed-off-by: rababerladuseladim --- mex/common/models/base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mex/common/models/base.py b/mex/common/models/base.py index 78ecf2c6..3a21722c 100644 --- a/mex/common/models/base.py +++ b/mex/common/models/base.py @@ -11,7 +11,6 @@ from mex.common.types import Identifier -ModelValuesT = TypeVar("ModelValuesT", bound=dict[str, Any]) RawModelDataT = TypeVar("RawModelDataT")