Set default instance of configuration. It stores default configuration, which can be returned by get_default_copy method. :param default: object of Configuration
(cls, default)
| 257 | |
| 258 | @classmethod |
| 259 | def set_default(cls, default): |
| 260 | """Set default instance of configuration. |
| 261 | |
| 262 | It stores default configuration, which can be |
| 263 | returned by get_default_copy method. |
| 264 | |
| 265 | :param default: object of Configuration |
| 266 | """ |
| 267 | cls._default = copy.deepcopy(default) |
| 268 | |
| 269 | @classmethod |
| 270 | def get_default(cls): |
no outgoing calls
no test coverage detected