diff options
| author | Anson Bridges <bridges.anson@gmail.com> | 2024-11-16 02:23:33 -0500 |
|---|---|---|
| committer | Anson Bridges <bridges.anson@gmail.com> | 2024-11-16 02:23:33 -0500 |
| commit | de80726bf352de4d5766074d5bd37f577654732d (patch) | |
| tree | 90817aebcb68db3452a4e2b4fb0660082b2c6f9b | |
| parent | 68f3668ed64337f34439d14147b4d9efbae62f86 (diff) | |
test
| -rw-r--r-- | dashboard_website/router.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard_website/router.py b/dashboard_website/router.py index 385cbae..80451f0 100644 --- a/dashboard_website/router.py +++ b/dashboard_website/router.py @@ -301,7 +301,7 @@ def __balance_waypoints( starts = [ bike.target_clue if (minimal and (bike.target_clue != None)) else bike for bike in bikes ] # all bikes regardless of enabled max_times = [ max(bike.timeTilDeadline()/3600, max_time) for bike in bikes ] time_balances = [ (max_times[i] - times[i]) for i in range(len(times))] - + print(time_balances) balanced = True for balance in time_balances: if balance < 0: |
