(self)
| 646 | self.pop() |
| 647 | |
| 648 | def __repr__(self) -> str: |
| 649 | return f"[{', '.join(repr(a) for a in self._assertions)}]" |
| 650 | |
| 651 | def __len__(self) -> int: |
| 652 | return len(self._assertions) |
nothing calls this directly
no outgoing calls
no test coverage detected