(config_path: str)
| 90 | |
| 91 | |
| 92 | def clean_config(config_path: str): |
| 93 | # Post-process to remove quotes around include paths |
| 94 | with open(config_path) as f: |
| 95 | content = f.read() |
| 96 | |
| 97 | # Remove quotes around include paths |
| 98 | content = content.replace("!include 'mini/", "!include mini/") |
| 99 | content = content.replace(".yaml'", ".yaml") |
| 100 | |
| 101 | with open(config_path, "w") as f: |
| 102 | f.write(content) |
| 103 | |
| 104 | |
| 105 | def get_name(p): |