(self)
| 4521 | ) |
| 4522 | |
| 4523 | def _is_clean(self) -> bool: |
| 4524 | return ( |
| 4525 | not self.identity_map.check_modified() |
| 4526 | and not self._deleted |
| 4527 | and not self._new |
| 4528 | ) |
| 4529 | |
| 4530 | # have this here since it otherwise causes issues with the proxy |
| 4531 | # method generation |
no test coverage detected