(self, context: clmn.Context)
| 2540 | ) |
| 2541 | |
| 2542 | def _table_with_context(self, context: clmn.Context) -> Table: |
| 2543 | columns = { |
| 2544 | name: self._wrap_column_in_context(context, column, name) |
| 2545 | for name, column in self._columns.items() |
| 2546 | } |
| 2547 | |
| 2548 | return Table( |
| 2549 | _columns=columns, |
| 2550 | _context=context, |
| 2551 | ) |
| 2552 | |
| 2553 | @functools.cached_property |
| 2554 | def _table_restricted_context(self) -> clmn.TableRestrictedRowwiseContext: |
no test coverage detected