mirror of
https://github.com/clearml/clearml
synced 2025-04-05 21:26:20 +00:00
Fix PY3.5 compatibility
This commit is contained in:
parent
c2b6165987
commit
43f7c549fb
@ -463,8 +463,10 @@ class Dataset(object):
|
||||
dataset_paths = itertools.repeat(dataset_path)
|
||||
else:
|
||||
if len(dataset_path) != len(source_url):
|
||||
raise ValueError("dataset_path must be a string or a list of strings with the same length as source_url"
|
||||
f" (received {len(dataset_path)} paths for {len(source_url)} source urls))")
|
||||
raise ValueError(
|
||||
f"dataset_path must be a string or a list of strings with the same length as source_url"
|
||||
f" (received {len(dataset_path)} paths for {len(source_url)} source urls))"
|
||||
)
|
||||
dataset_paths = dataset_path
|
||||
with ThreadPoolExecutor(max_workers=max_workers) as tp:
|
||||
for source_url_, dataset_path_ in zip(source_url_list, dataset_paths):
|
||||
|
Loading…
Reference in New Issue
Block a user