(self, path, length=30)
| 1194 | return f"{path[:15]}...{path[-15:]}" if len(path) > 33 else path |
| 1195 | |
| 1196 | def trim_cmd(self, path, length=30): |
| 1197 | return f"{path[:length]}..." if len(path) > (length + 3) else path |
| 1198 | |
| 1199 | def get_remote_tracking_branches(self): |
| 1200 | remote_refs = [remote.refs for remote in self.repo.remotes] |
no outgoing calls
no test coverage detected