Returns the base class of a configurable hierarchy. This will normally return the class in which it is defined. (which is *not* necessarily the same as the ``cls`` classmethod parameter).
(cls)
| 278 | |
| 279 | @classmethod |
| 280 | def configurable_base(cls): |
| 281 | # type: () -> Type[Configurable] |
| 282 | """Returns the base class of a configurable hierarchy. |
| 283 | |
| 284 | This will normally return the class in which it is defined. |
| 285 | (which is *not* necessarily the same as the ``cls`` classmethod |
| 286 | parameter). |
| 287 | |
| 288 | """ |
| 289 | raise NotImplementedError() |
| 290 | |
| 291 | @classmethod |
| 292 | def configurable_default(cls): |
no outgoing calls
no test coverage detected