Jay-Rajput commited on
Commit
c8cb593
·
1 Parent(s): d79e927

points redistribution

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -31,7 +31,7 @@ outcomes_file = Path("outcomes") / f"match_outcomes.json"
31
  OUTCOMES_FOLDER = outcomes_file.parent
32
  OUTCOMES_FOLDER.mkdir(parents=True, exist_ok=True)
33
 
34
- REDISTRIBUTED_JSON = Path("redistributed_matches.json")
35
  if not REDISTRIBUTED_JSON.exists():
36
  REDISTRIBUTED_JSON.write_text("[]")
37
 
 
31
  OUTCOMES_FOLDER = outcomes_file.parent
32
  OUTCOMES_FOLDER.mkdir(parents=True, exist_ok=True)
33
 
34
+ REDISTRIBUTED_JSON = Path("bonus") / f"redistributed_matches.json"
35
  if not REDISTRIBUTED_JSON.exists():
36
  REDISTRIBUTED_JSON.write_text("[]")
37