(self, **config)
| 106 | fallback: Layout |
| 107 | |
| 108 | def __init__(self, **config): |
| 109 | self.layouts = {} |
| 110 | Layout.__init__(self, **config) |
| 111 | self.add_defaults(Slice.defaults) |
| 112 | self._slice = Single() |
| 113 | |
| 114 | def clone(self, group: _Group) -> Self: |
| 115 | res = Layout.clone(self, group) |
no test coverage detected