convert : fix another python 3.8 issue

This commit is contained in:
Cebtenzzre 2023-08-31 22:02:22 -04:00
parent 528134dd02
commit 7ee8d35834

View file

@ -530,7 +530,7 @@ class LazyTensor:
raise ValueError(f'Cannot validate conversion from {self.data_type} to {data_type}.')
LazyModel = dict[str, LazyTensor]
LazyModel: TypeAlias = 'dict[str, LazyTensor]'
@dataclass