(self, path: str)
| 1727 | return self.modified(path) |
| 1728 | |
| 1729 | def modified(self, path: str) -> datetime: |
| 1730 | info = self.info(path) |
| 1731 | return cast(datetime, info.get("last_modified")) |
| 1732 | |
| 1733 | def invalidate_cache(self, path: str | None = None) -> None: |
| 1734 | if path is None: |