diff options
author | vg <vgm+dev@devys.org> | 2024-05-21 15:14:54 +0200 |
---|---|---|
committer | vg <vgm+dev@devys.org> | 2024-05-21 15:14:54 +0200 |
commit | 2cd409caa6421e66836b48979fcbfd3b685baa80 (patch) | |
tree | 9229c66a6b4b39776dd9dc84e5cf7b2c4ea9afd9 | |
parent | 3a950c09e2000a5e14ed31050e96a3fb26e1aa09 (diff) | |
download | gamechest-2cd409caa6421e66836b48979fcbfd3b685baa80.tar.gz gamechest-2cd409caa6421e66836b48979fcbfd3b685baa80.tar.bz2 gamechest-2cd409caa6421e66836b48979fcbfd3b685baa80.zip |
git-sync on seele
-rw-r--r-- | gamechestcli/gamechest/gameconfig.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gamechestcli/gamechest/gameconfig.py b/gamechestcli/gamechest/gameconfig.py index 5e46efa..2c038c2 100644 --- a/gamechestcli/gamechest/gameconfig.py +++ b/gamechestcli/gamechest/gameconfig.py @@ -34,6 +34,7 @@ class GameConfig: game_config_path.mkdir(parents=True, exist_ok=True) game_config_filepath = game_config_path / 'config.yaml' self.game_config_filepath = game_config_filepath + self.config = {} with contextlib.ExitStack() as stack: stack.enter_context(contextlib.suppress(FileNotFoundError)) fdin = stack.enter_context(open(game_config_filepath, 'r', |