(self, *args, **kwargs)
| 60 | "Will be included as a good example of SQL in assistant queries that use relevant tables")) |
| 61 | |
| 62 | def __init__(self, *args, **kwargs): |
| 63 | self.params = kwargs.get("params") |
| 64 | kwargs.pop("params", None) |
| 65 | super().__init__(*args, **kwargs) |
| 66 | |
| 67 | class Meta: |
| 68 | ordering = ["title"] |