(self)
| 422 | |
| 423 | @property |
| 424 | def maintenance_branches(self): |
| 425 | return [x["name"] for x in self._github_api.get_branches() |
| 426 | if x["name"].startswith("maint-")] |
| 427 | |
| 428 | def _get_issue(self): |
| 429 | if self.title.startswith("MINOR:"): |
nothing calls this directly
no test coverage detected