diff --git a/src/tot/tasks/crosswords.py b/src/tot/tasks/crosswords.py index fb270d0..3521a97 100644 --- a/src/tot/tasks/crosswords.py +++ b/src/tot/tasks/crosswords.py @@ -159,7 +159,7 @@ class MiniCrosswordsTask(Task): Input Example: Output Example: """ - def __init__(self, file): + def __init__(self, file='mini0505.json'): """ file: a csv file (fixed) """ @@ -254,4 +254,4 @@ class MiniCrosswordsTask(Task): res = res.split('\n')[-1].strip() if res in count: count[res] += 1 print(count) - return count \ No newline at end of file + return count