Return the boss spawn dict sorted alphabetically
All checks were successful
Build and push / changes (push) Successful in 4s
Build and push / Lint-Python (push) Successful in 6s
Build and push / Build-and-Push-Docker (push) Successful in 18s
Build and push / sync-argocd-app (push) Successful in 2s
Build and push / post-status-to-discord (push) Successful in 2s

This commit is contained in:
Luke R 2024-11-13 11:41:01 -08:00
parent 5987d7014f
commit 1b46c45d9e

View File

@ -81,7 +81,7 @@ def get_tarkov_boss_info():
if boss["boss"]["name"] not in dont_care 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: def compare_boss_spawns(known_spawns: dict, spawns_from_api: dict) -> dict: