(self, alpha)
| 306 | * self.scores[func_name] |
| 307 | |
| 308 | def devrank_commits(self, alpha): |
| 309 | self.update_shares(alpha) |
| 310 | return sorted(self.share.items(), key=lambda x: x[1], reverse=True) |
| 311 | |
| 312 | def devrank_functions(self, alpha): |
| 313 | self.scores = devrank(self.G, alpha=alpha) |
nothing calls this directly
no test coverage detected