(self)
| 731 | self.hash_name = "md5" |
| 732 | |
| 733 | def set_exec(self) -> None: |
| 734 | if self.isfile() and self.meta.isexec: |
| 735 | self.cache.set_exec(self.fs_path) |
| 736 | |
| 737 | def _checkout(self, *args, **kwargs) -> Optional[bool]: |
| 738 | from dvc_data.hashfile.checkout import CheckoutError as _CheckoutError |