Skip to content

Commit

Permalink
Merge branch 'config_yaml' of github.com:C2SM/processing-chain into c…
Browse files Browse the repository at this point in the history
…onfig_yaml
  • Loading branch information
mjaehn committed Sep 20, 2023
2 parents ae9616c + fc124ab commit fb33d9a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion run_chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,9 @@ def print_config(self):
print(f"{key:<{max_col_width}} dict")
for sub_key, sub_value in value.items():
sub_value_type = type(sub_value).__name__
print(f" - {sub_key:<{max_col_width-4}} {sub_value_type:<4} {sub_value}")
print(
f" - {sub_key:<{max_col_width-4}} {sub_value_type:<4} {sub_value}"
)
else:
# Standard output
key_type = type(key).__name__
Expand Down

0 comments on commit fb33d9a

Please sign in to comment.