Skip to content

Commit

Permalink
py38 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vhaldemar committed Dec 5, 2024
1 parent f35cbe9 commit d6df026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/yandex_cloud_ml_sdk/_types/tuning/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
DatasetType = Union[str, BaseDataset]
WeightedDatasetType = Tuple[DatasetType, float]
TuningDatasetType = Union[DatasetType, WeightedDatasetType]
TuningDatasetsType = TuningDatasetType | Iterable[TuningDatasetType] | Dict[DatasetType, float]
TuningDatasetsType = TuningDatasetType, Iterable[TuningDatasetType], Dict[DatasetType, float]

ERROR_TEXT = ' '.join("""datasets must contain
string with dataset ID,
Expand Down

0 comments on commit d6df026

Please sign in to comment.