Get the configuration.
(self)
| 36 | self._storage_client = storage_client |
| 37 | |
| 38 | def get_configuration(self) -> Configuration: |
| 39 | """Get the configuration.""" |
| 40 | if self._configuration is None: |
| 41 | logger.debug('No configuration set, implicitly creating and using default Configuration.') |
| 42 | self._configuration = Configuration() |
| 43 | |
| 44 | return self._configuration |
| 45 | |
| 46 | def set_configuration(self, configuration: Configuration) -> None: |
| 47 | """Set the configuration. |