(self)
| 158 | return f"{_type}" + (f"({subtype})" if subtype else "") |
| 159 | |
| 160 | def format(self) -> str: |
| 161 | commit_link = commit_linkify(self.id, self.org, self.repo) if self.id else "" |
| 162 | |
| 163 | return f"{self.msg_processed}" + (f" ({commit_link})" if commit_link else "") |
| 164 | |
| 165 | |
| 166 | def run(cmd, cwd=".") -> str: |
no test coverage detected