We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8796d7 commit 28e030fCopy full SHA for 28e030f
coderdata/utils/utils.py
@@ -54,5 +54,5 @@ def list_datasets(raw: bool=False) -> dict | None:
54
return data_information['datasets']
55
else:
56
datasets = data_information['datasets']
57
- for dataset in data_information:
58
- print(f'{dataset}: "{data_information[dataset]['description']}"')
+ for dataset in datasets:
+ print(f'{dataset}: {datasets[dataset]["description"]}')
0 commit comments