(self)
| 77 | return git_time(self.data["updated_at"]) |
| 78 | |
| 79 | def merged_at(self): |
| 80 | return git_time(self.data["merged_at"]) |
| 81 | |
| 82 | def has_jira_id(self): |
| 83 | return GitPullRequest.storm_jira_number.search(self.title()) |
nothing calls this directly
no test coverage detected