(self, opts)
| 62 | return args |
| 63 | |
| 64 | def _parse_opt(self, opts): |
| 65 | config = {} |
| 66 | if not opts: |
| 67 | return config |
| 68 | for s in opts: |
| 69 | s = s.strip() |
| 70 | k, v = s.split("=") |
| 71 | config[k] = yaml.load(v, Loader=yaml.SafeLoader) |
| 72 | return config |
| 73 | |
| 74 | |
| 75 | def load_config(file_path): |
no outgoing calls
no test coverage detected