Commit 5693abc5 authored by lintangsutawika's avatar lintangsutawika
Browse files

show list of all datasets

parent 63eabe79
...@@ -19,7 +19,9 @@ class MultiChoice: ...@@ -19,7 +19,9 @@ class MultiChoice:
for value in values.split(","): for value in values.split(","):
if len(fnmatch.filter(self.choices, value)) == 0: if len(fnmatch.filter(self.choices, value)) == 0:
eval_logger.warning("{} is not in task list.".format(value)) eval_logger.warning("{} is not in task list.".format(value))
# eval_logger.info(f"{choices} is this") eval_logger.info(f"Available tasks to choose:")
for choice in self.choices:
eval_logger.info(f" {choice}")
return True return True
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment