Called when the `Analyzer` is going to leave this commit. remarks This method can be implemented as async method.
(self, hexsha: str)
| 166 | self.register_commit(hexsha, author_name, author_email, commit_message) |
| 167 | |
| 168 | def end_commit(self, hexsha: str): |
| 169 | """ |
| 170 | Called when the `Analyzer` is going to leave this commit. |
| 171 | |
| 172 | remarks |
| 173 | This method can be implemented as async method. |
| 174 | """ |
| 175 | pass |
| 176 | |
| 177 | @abstractmethod |
| 178 | def get_graph(self) -> CallCommitGraph: |
no outgoing calls
no test coverage detected