Skip to content

Commit 34b6388

Browse files
committed
Fix new mypy error
1 parent 324c2a9 commit 34b6388

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config_framework/utils/loader_specific_deserializer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ def __init__(self, deserializers: Dict[
2929

3030
def __call__(
3131
self,
32-
variable: Variable,
32+
variable: Variable[Var],
3333
from_value: Any,
3434
) -> Var:
3535
"""
36-
Casts value to specific loaders type so it can be saved.
36+
Casts value to specific loaders type, so it can be saved.
3737
3838
:param from_value: raw value from loader.
3939
:returns: validated and caster to python type value.

0 commit comments

Comments
 (0)