Skip to content

Commit

Permalink
Update create_ladder_zip.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FredNoonienSingh authored Dec 5, 2024
1 parent 794c0ce commit bd98a2f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/create_ladder_zip.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
from subprocess import Popen, run
from typing import Dict, List, Tuple

import yaml
#import yaml

MY_BOT_NAME: str = "MyBotName"
MY_BOT_NAME: str = "HarstemsAunt"
ZIPFILE_NAME: str = "bot.zip"

CONFIG_FILE: str = "config.yml"
Expand Down Expand Up @@ -152,7 +152,8 @@ def check_config_values():
config_path: str = path.join(ROOT_DIRECTORY, CONFIG_FILE)
if path.isfile(config_path):
with open(path.join(ROOT_DIRECTORY, CONFIG_FILE), "r") as f:
config = yaml.safe_load(f)
pass
#config = yaml.safe_load(f)
assert not config["Debug"], "Debug is not False"


Expand Down

0 comments on commit bd98a2f

Please sign in to comment.