(self, opts)
| 23 | return args |
| 24 | |
| 25 | def _parse_opt(self, opts): |
| 26 | config = {} |
| 27 | if not opts: |
| 28 | return config |
| 29 | for s in opts: |
| 30 | s = s.strip() |
| 31 | k, v = s.split('=', 1) |
| 32 | if '.' not in k: |
| 33 | config[k] = yaml.load(v, Loader=yaml.Loader) |
| 34 | else: |
| 35 | keys = k.split('.') |
| 36 | if keys[0] not in config: |
| 37 | config[keys[0]] = {} |
| 38 | cur = config[keys[0]] |
| 39 | for idx, key in enumerate(keys[1:]): |
| 40 | if idx == len(keys) - 2: |
| 41 | cur[key] = yaml.load(v, Loader=yaml.Loader) |
| 42 | else: |
| 43 | cur[key] = {} |
| 44 | cur = cur[key] |
| 45 | return config |