Suppression du score par défaut en cas d'erreur #21

Merged
CoCo_Sol merged 1 commit from lazy-score into main 2024-01-07 09:49:03 +00:00
Showing only changes of commit 4f47d48842 - Show all commits

View file

@ -23,7 +23,7 @@ def get_scores() -> list[tuple[int, str]]:
return rq.get(f"https://{IP}/data").json()
except:
print("Error with the serveur")
return [(1, "")]
return []
def __create_button(world: World, i: int, name: str):