(config_names: list)
| 40 | |
| 41 | |
| 42 | def load_configs(config_names: list): |
| 43 | configs = [] |
| 44 | for config_name in config_names: |
| 45 | configs.append(load_config(config_name)) |
| 46 | return configs |
| 47 | |
| 48 | |
| 49 | def load_all_configs(): |
nothing calls this directly
no test coverage detected