(a,b)
| 338 | config = None |
| 339 | |
| 340 | def merge_dict(a,b): |
| 341 | for key in b: |
| 342 | if isinstance(b[key], dict): |
| 343 | merge_dict(a[key], b[key]) |
| 344 | else: |
| 345 | a[key] = b[key] |
| 346 | |
| 347 | with open(os.path.join(self._infoDir,'software.yaml'), "r") as f: |
| 348 | config = yaml.safe_load(f) |
nothing calls this directly
no test coverage detected