We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85ca1f4 commit 549ce3fCopy full SHA for 549ce3f
1 file changed
src/lightspeed-stack.py
@@ -10,6 +10,7 @@ def load_configuration(filename: str) -> Configuration:
10
"""Load configuration from YAML file."""
11
with open(filename, encoding="utf-8") as fin:
12
config_dict = yaml.safe_load(fin)
13
+ print(config_dict)
14
return Configuration(**config_dict)
15
16
0 commit comments