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.
2 parents b684d17 + cd23c25 commit 3d37b5cCopy full SHA for 3d37b5c
.gitignore
@@ -1 +1,2 @@
1
-lc_data.json
+__pycache__/
2
+*.pyc
data/contests.json
scripts/contest.py
@@ -56,7 +56,7 @@ def filter_valid_contests(self):
56
# noinspection PyMethodMayBeStatic
57
def store_valid_contests_in_json(self):
58
contests = self.filter_valid_contests()
59
- self.create_a_contest_json()
+ # self.create_a_contest_json()
60
with open(self.contest_info_path, 'w') as file:
61
json.dump(contests, file)
62
0 commit comments