(self, other)
| 18 | return self._with_repr(self.__make_trailing_repr("filter", condition)) |
| 19 | |
| 20 | def __or__(self, other): |
| 21 | new_repr = f"one_of({self!r}, {other!r})" |
| 22 | return self._with_repr(new_repr) |
| 23 | |
| 24 | |
| 25 | _STRATEGIES = { |
nothing calls this directly
no test coverage detected