fix: remove game channel from games
Lol
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
# Re-exports
|
# Re-exports
|
||||||
from vollerei.genshin.launcher import Game, GameChannel
|
from vollerei.genshin.launcher import Game
|
||||||
|
|
||||||
|
|
||||||
__all__ = ["Game", "GameChannel"]
|
__all__ = ["Game"]
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
# Re-exports
|
# Re-exports
|
||||||
from vollerei.genshin.launcher.game import Game, GameChannel
|
from vollerei.genshin.launcher.game import Game
|
||||||
|
|
||||||
|
|
||||||
__all__ = ["Game", "GameChannel"]
|
__all__ = ["Game"]
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# Re-exports
|
# Re-exports
|
||||||
from vollerei.hsr.patcher import Patcher, PatchType
|
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"]
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
# Re-exports
|
# Re-exports
|
||||||
from vollerei.hsr.launcher.game import Game, GameChannel
|
from vollerei.hsr.launcher.game import Game
|
||||||
|
|
||||||
|
|
||||||
__all__ = ["Game", "GameChannel"]
|
__all__ = ["Game"]
|
||||||
|
|||||||
@ -3,13 +3,14 @@ from shutil import copy2, rmtree
|
|||||||
from packaging import version
|
from packaging import version
|
||||||
from vollerei.abc.patcher import PatcherABC
|
from vollerei.abc.patcher import PatcherABC
|
||||||
from vollerei.common import telemetry
|
from vollerei.common import telemetry
|
||||||
|
from vollerei.common.enums import GameChannel
|
||||||
from vollerei.exceptions.game import GameNotInstalledError
|
from vollerei.exceptions.game import GameNotInstalledError
|
||||||
from vollerei.exceptions.patcher import (
|
from vollerei.exceptions.patcher import (
|
||||||
VersionNotSupportedError,
|
VersionNotSupportedError,
|
||||||
PatcherError,
|
PatcherError,
|
||||||
PatchUpdateError,
|
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.utils import download_and_extract, Git, Xdelta3
|
||||||
from vollerei.paths import tools_data_path
|
from vollerei.paths import tools_data_path
|
||||||
from vollerei.hsr.constants import ASTRA_REPO, JADEITE_REPO
|
from vollerei.hsr.constants import ASTRA_REPO, JADEITE_REPO
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
# Re-exports
|
# Re-exports
|
||||||
from vollerei.zzz.launcher import Game, GameChannel
|
from vollerei.zzz.launcher import Game
|
||||||
|
|
||||||
|
|
||||||
__all__ = ["Game", "GameChannel"]
|
__all__ = ["Game"]
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
# Re-exports
|
# Re-exports
|
||||||
from vollerei.zzz.launcher.game import Game, GameChannel
|
from vollerei.zzz.launcher.game import Game
|
||||||
|
|
||||||
|
|
||||||
__all__ = ["Game", "GameChannel"]
|
__all__ = ["Game"]
|
||||||
|
|||||||
Reference in New Issue
Block a user