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