(self)
| 66 | |
| 67 | @property |
| 68 | def _identity(self) -> dict[str, Any]: |
| 69 | identity: dict[str, Any] = { |
| 70 | "path": self.__path, |
| 71 | "mode": self.__mode, |
| 72 | "type": self.__type, |
| 73 | } |
| 74 | if is_defined(self.__sha): |
| 75 | identity["sha"] = self.__sha |
| 76 | if is_defined(self.__content): |
| 77 | identity["content"] = self.__content |
| 78 | return identity |
nothing calls this directly
no test coverage detected