Get default instance of configuration. :return: The Configuration object.
(cls)
| 268 | |
| 269 | @classmethod |
| 270 | def get_default(cls): |
| 271 | """Get default instance of configuration. |
| 272 | |
| 273 | :return: The Configuration object. |
| 274 | """ |
| 275 | if cls._default is None: |
| 276 | cls.set_default(Configuration()) |
| 277 | return cls._default |
| 278 | |
| 279 | @classmethod |
| 280 | def get_default_copy(cls): |