Return the boss spawn dict sorted alphabetically

This commit is contained in:
Luke Robles 2024-11-13 11:41:01 -08:00
parent c2f41c76e6
commit 0ace86fe49

View File

@ -81,7 +81,7 @@ def get_tarkov_boss_info():
if boss["boss"]["name"] not in dont_care
}
return levels
return dict(sorted(levels.items()))
def compare_boss_spawns(known_spawns: dict, spawns_from_api: dict) -> dict: