(self)
| 2873 | return hasher.hexdigest() |
| 2874 | |
| 2875 | def _stat(self) -> os.stat_result: |
| 2876 | assert self.absolute_path is not None |
| 2877 | if not hasattr(self, "_stat_result"): |
| 2878 | self._stat_result = os.stat(self.absolute_path) |
| 2879 | return self._stat_result |
| 2880 | |
| 2881 | def get_content_size(self) -> int: |
| 2882 | """Retrieve the total size of the resource at the given path. |
no outgoing calls
no test coverage detected