(
self, collection: WriteableColumnCollection[_COLKEY, _COL_co]
)
| 2529 | _parent: WriteableColumnCollection[_COLKEY, _COL_co] |
| 2530 | |
| 2531 | def __init__( |
| 2532 | self, collection: WriteableColumnCollection[_COLKEY, _COL_co] |
| 2533 | ): |
| 2534 | object.__setattr__(self, "_parent", collection) |
| 2535 | object.__setattr__(self, "_index", collection._index) |
| 2536 | object.__setattr__(self, "_collection", collection._collection) |
| 2537 | object.__setattr__(self, "_colset", collection._colset) |
| 2538 | object.__setattr__(self, "_proxy_index", collection._proxy_index) |
| 2539 | |
| 2540 | def _as_readonly(self) -> ReadOnlyColumnCollection[_COLKEY, _COL_co]: |
| 2541 | return self |
no test coverage detected