diff --git a/environment.yml b/environment.yml index 0782e96..044227e 100644 --- a/environment.yml +++ b/environment.yml @@ -1,7 +1,7 @@ # run: conda env create --file environment.yml name: hc-tcg-bot dependencies: -- python>=3.10 +- python>=3.12 - anaconda - aiohttp - pip diff --git a/main.py b/main.py index 3a9af9f..011e18b 100644 --- a/main.py +++ b/main.py @@ -46,7 +46,7 @@ async def on_disconnect(self: "Bot") -> None: bot = Bot(intents=intents) -data_gen = DataGenerator(CONFIG["tokens"]["github"], branch="christmas") +data_gen = DataGenerator(CONFIG["tokens"]["github"]) try: with open("universe.pkl", "rb") as f: diff --git a/util/datagen.py b/util/datagen.py index 2005477..1cfa85c 100644 --- a/util/datagen.py +++ b/util/datagen.py @@ -568,7 +568,7 @@ class DataGenerator: def __init__( self: "DataGenerator", github_token: str, - repository: str = "martinkadlec0/hc-tcg", + repository: str = "hc-tcg/hc-tcg", branch: str = "master", font: ImageFont.FreeTypeFont = None, ) -> None: