Initiate Extension and set up configs.
(self, **kwargs)
| 54 | """ |
| 55 | |
| 56 | def __init__(self, **kwargs): |
| 57 | """ Initiate Extension and set up configs. """ |
| 58 | self.setConfigs(kwargs) |
| 59 | |
| 60 | def getConfig(self, key: str, default: Any = '') -> Any: |
| 61 | """ |
nothing calls this directly
no test coverage detected