(cls, **kwargs)
| 311 | __slots__ = () |
| 312 | |
| 313 | def __init_subclass__(cls, **kwargs): |
| 314 | super().__init_subclass__(**kwargs) |
| 315 | |
| 316 | inject_numpy_same(cls) # some methods not applicable to Dataset objects |
nothing calls this directly
no test coverage detected