diff options
author | Cebtenzzre <cebtenzzre@gmail.com> | 2023-08-31 22:13:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-31 22:13:51 -0400 |
commit | bce1fef328941499dc0acb76cc7fd7ac90449c2f (patch) | |
tree | 81cfdcb511c9dbdf23b8949a9b2980a944ff9cd1 | |
parent | 528134dd0267838d9c0250cf1d9621631dff09b2 (diff) |
convert : fix another python 3.8 issue (#2949)
-rwxr-xr-x | convert.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |