diff --git a/utils/get_last_uid.py b/utils/get_last_uid.py index 500e0b8..4b1bdd2 100644 --- a/utils/get_last_uid.py +++ b/utils/get_last_uid.py @@ -1,9 +1,9 @@ -import json +import orjson as json def main(): with open("players.json", "r", encoding="utf-8") as f: - d = json.load(f) + d: list[dict[str, int | str]] = json.loads(f.read()) print(d[-1]["userId"])