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.
1 parent a549649 commit 07249c2Copy full SHA for 07249c2
app/leadboard_config.py
@@ -12,7 +12,6 @@ def set_initial_counts():
12
args = parser.parse_args()
13
data_file = Path("language_data_points.json")
14
15
- # Load existing data if available
16
if data_file.exists():
17
with open(data_file, "r", encoding="utf-8") as f:
18
try:
@@ -23,7 +22,6 @@ def set_initial_counts():
23
22
else:
24
data = {}
25
26
- # Load available languages
27
languages_file = Path("languages.json")
28
if languages_file.exists():
29
with open(languages_file, "r", encoding="utf-8") as f:
0 commit comments