fix: remove game channel from games

Lol
This commit is contained in:
2025-02-01 23:58:09 +07:00
parent 976308ac85
commit 7dbe890bf3
7 changed files with 14 additions and 13 deletions

View File

@ -1,5 +1,5 @@
# Re-exports
from vollerei.genshin.launcher import Game, GameChannel
from vollerei.genshin.launcher import Game
__all__ = ["Game", "GameChannel"]
__all__ = ["Game"]

View File

@ -1,5 +1,5 @@
# Re-exports
from vollerei.genshin.launcher.game import Game, GameChannel
from vollerei.genshin.launcher.game import Game
__all__ = ["Game", "GameChannel"]
__all__ = ["Game"]

View File

@ -1,6 +1,6 @@
# Re-exports
from vollerei.hsr.patcher import Patcher, PatchType
from vollerei.hsr.launcher import Game, GameChannel
from vollerei.hsr.launcher import Game
__all__ = ["Patcher", "PatchType", "Game", "GameChannel"]
__all__ = ["Patcher", "PatchType", "Game"]

View File

@ -1,5 +1,5 @@
# Re-exports
from vollerei.hsr.launcher.game import Game, GameChannel
from vollerei.hsr.launcher.game import Game
__all__ = ["Game", "GameChannel"]
__all__ = ["Game"]

View File

@ -3,13 +3,14 @@ from shutil import copy2, rmtree
from packaging import version
from vollerei.abc.patcher import PatcherABC
from vollerei.common import telemetry
from vollerei.common.enums import GameChannel
from vollerei.exceptions.game import GameNotInstalledError
from vollerei.exceptions.patcher import (
VersionNotSupportedError,
PatcherError,
PatchUpdateError,
)
from vollerei.hsr.launcher.game import Game, GameChannel
from vollerei.hsr.launcher.game import Game
from vollerei.utils import download_and_extract, Git, Xdelta3
from vollerei.paths import tools_data_path
from vollerei.hsr.constants import ASTRA_REPO, JADEITE_REPO

View File

@ -1,5 +1,5 @@
# Re-exports
from vollerei.zzz.launcher import Game, GameChannel
from vollerei.zzz.launcher import Game
__all__ = ["Game", "GameChannel"]
__all__ = ["Game"]

View File

@ -1,5 +1,5 @@
# Re-exports
from vollerei.zzz.launcher.game import Game, GameChannel
from vollerei.zzz.launcher.game import Game
__all__ = ["Game", "GameChannel"]
__all__ = ["Game"]