customserver: games package cache: fix py3.11 compat

This commit is contained in:
black-sliver
2026-02-28 20:33:27 +01:00
parent a294e1cdc9
commit 1346a89a4a

View File

@@ -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,