(self)
| 54 | |
| 55 | @property |
| 56 | def _identity(self) -> dict[str, str]: |
| 57 | identity: dict[str, Any] = { |
| 58 | "content": self.__content, |
| 59 | } |
| 60 | if is_defined(self.__newName): |
| 61 | identity["filename"] = self.__newName |
| 62 | return identity |
nothing calls this directly
no test coverage detected