Run on initialization and at the end of chaining. Any attributes that would normally be set in __init__() should go here instead.
(self)
| 56 | self._setup_query() |
| 57 | |
| 58 | def _setup_query(self): |
| 59 | """ |
| 60 | Run on initialization and at the end of chaining. Any attributes that |
| 61 | would normally be set in __init__() should go here instead. |
| 62 | """ |
| 63 | self.values = [] |
| 64 | self.related_ids = None |
| 65 | self.related_updates = {} |
| 66 | |
| 67 | def clone(self): |
| 68 | obj = super().clone() |