(self, key: str)
| 401 | self.metadata = metadata |
| 402 | |
| 403 | def __getattr__(self, key: str) -> Table: |
| 404 | return self.metadata.tables[_get_table_key(key, self.key)] |
| 405 | |
| 406 | |
| 407 | def _determine_container(key: str, value: Any) -> _GetColumns: |
nothing calls this directly
no test coverage detected