(self)
| 186 | self.show() |
| 187 | |
| 188 | def show(self): |
| 189 | issue = self.issue |
| 190 | print(format_issue_output("github", self.github_id, issue["state"], |
| 191 | issue["title"], ', '.join(self.assignees), |
| 192 | self.components)) |
| 193 | |
| 194 | |
| 195 | def get_candidate_fix_version(mainline_versions, |
no test coverage detected