(file_path)
| 6 | import yaml |
| 7 | |
| 8 | def load_yaml_config(file_path): |
| 9 | with open(file_path, 'r') as file: |
| 10 | config = yaml.safe_load(file) |
| 11 | return config |
| 12 | |
| 13 | def main(): |
| 14 | config = { |
nothing calls this directly
no outgoing calls
no test coverage detected