(self, other)
| 84 | self._cache_key += (fn.__code__,) + args |
| 85 | |
| 86 | def __iadd__(self, other): |
| 87 | if isinstance(other, tuple): |
| 88 | self.add_criteria(*other) |
| 89 | else: |
| 90 | self.add_criteria(other) |
| 91 | return self |
| 92 | |
| 93 | def __add__(self, other): |
| 94 | if isinstance(other, tuple): |
nothing calls this directly
no test coverage detected