(self)
| 631 | return {} |
| 632 | |
| 633 | def status(self) -> dict[str, str]: |
| 634 | if self.hash_info and self.use_cache and self.changed_cache(): |
| 635 | return {str(self): "not in cache"} |
| 636 | |
| 637 | return self.workspace_status() |
| 638 | |
| 639 | def changed(self) -> bool: |
| 640 | status = self.status() |