(self, **kwargs)
| 8 | |
| 9 | class Args: |
| 10 | def __init__(self, **kwargs): |
| 11 | for k, v in kwargs.items(): |
| 12 | self.__setattr__(k, v) |
| 13 | |
| 14 | |
| 15 | def override_config(old_config: dict, new_config: dict): |
nothing calls this directly
no outgoing calls
no test coverage detected