From ab400345c5ea39d28ea6d7d3be0e417b11113c87 Mon Sep 17 00:00:00 2001 From: Shunyu Yao Date: Mon, 11 Sep 2023 09:39:48 -0400 Subject: [PATCH] Update crosswords.py --- src/tot/tasks/crosswords.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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