(self)
| 140 | |
| 141 | @property |
| 142 | def sha(self) -> str: |
| 143 | # if populated from a simple-commit, id actually holds the sha |
| 144 | if is_undefined(self._sha) and is_defined(self._id): |
| 145 | return self._id.value |
| 146 | self._completeIfNotSet(self._sha) |
| 147 | return self._sha.value |
| 148 | |
| 149 | @property |
| 150 | def timestamp(self) -> datetime: |
nothing calls this directly
no test coverage detected