made tests run

This commit is contained in:
2023-12-15 01:01:29 +01:00
parent e5ed2e7319
commit 480b97059d
4 changed files with 18 additions and 8 deletions

View File

@@ -1,11 +1,10 @@
import yaml
config_file = "src/config.yml"
config_file = "config.yml"
def get_config():
with open(file=config_file, mode='r') as file:
print(yaml.safe_load(file))
return Config(yaml.safe_load(file))