(self, commit, category, topic)
| 181 | return None |
| 182 | |
| 183 | def update_commit(self, commit, category, topic): |
| 184 | assert category in common.categories |
| 185 | assert topic in topics |
| 186 | commit.category = category |
| 187 | commit.topic = topic |
| 188 | self.commits.write_result() |
| 189 | |
| 190 | |
| 191 | def main(): |
no test coverage detected