(self, other)
| 91 | return self |
| 92 | |
| 93 | def __add__(self, other): |
| 94 | if isinstance(other, tuple): |
| 95 | return self.with_criteria(*other) |
| 96 | else: |
| 97 | return self.with_criteria(other) |
| 98 | |
| 99 | def add_criteria(self, fn, *args): |
| 100 | """Add a criteria function to this :class:`.BakedQuery`. |
nothing calls this directly
no test coverage detected