mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-21 15:03:18 -07:00
customserver: games package cache: fix py3.11 compat
This commit is contained in:
@@ -8,7 +8,7 @@ class DBGamesPackageCache(GamesPackageCache):
|
||||
|
||||
def __init__(self, static_games_package: dict[str, GamesPackage]) -> None:
|
||||
super().__init__()
|
||||
self._static = {game: super().get(game, games_package) for game, games_package in static_games_package.items()}
|
||||
self._static = {game: GamesPackageCache.get(self, game, games_package) for game, games_package in static_games_package.items()}
|
||||
|
||||
def get(
|
||||
self,
|
||||
|
||||
Reference in New Issue
Block a user