Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
lc_data.json
__pycache__/
*.pyc
Empty file added data/contests.json
Empty file.
2 changes: 1 addition & 1 deletion scripts/contest.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def filter_valid_contests(self):
# noinspection PyMethodMayBeStatic
def store_valid_contests_in_json(self):
contests = self.filter_valid_contests()
self.create_a_contest_json()
# self.create_a_contest_json()
with open(self.contest_info_path, 'w') as file:
json.dump(contests, file)

Expand Down