diff --git a/src/config/config_base.py b/src/config/config_base.py index 518f99c..87cb079 100644 --- a/src/config/config_base.py +++ b/src/config/config_base.py @@ -1,5 +1,5 @@ from dataclasses import dataclass, fields, MISSING -from typing import TypeVar, Type, Any, get_origin, get_args, Literal, Dict, List, Set, Tuple, Union +from typing import TypeVar, Type, Any, get_origin, get_args, Literal, Dict, Union T = TypeVar("T", bound="ConfigBase")