(filename: str, config_dict: T.Dict[str, T.Any])
| 23 | |
| 24 | |
| 25 | def write_config_file(filename: str, config_dict: T.Dict[str, T.Any]): |
| 26 | with open(filename, 'w') as file: |
| 27 | config_txt = yaml.dump(config_dict, file, default_flow_style=False) |
| 28 | return config_txt |
| 29 | |
| 30 | |
| 31 | def remove_bad_char(name: str) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected