(self, model: type[MODEL], annotations: dict[str, Any])
| 1519 | # pylint: disable=W0223 |
| 1520 | |
| 1521 | def __init__(self, model: type[MODEL], annotations: dict[str, Any]) -> None: |
| 1522 | super().__init__(model) |
| 1523 | self._annotations = annotations |
| 1524 | |
| 1525 | def _join_table_with_forwarded_fields( |
| 1526 | self, model: type[MODEL], table: Table, field: str, forwarded_fields: str |