(self, *args)
| 87 | |
| 88 | @classmethod |
| 89 | def from_git(self, *args): |
| 90 | result = run(["git", "log", "--oneline", *args], capture_output=True) |
| 91 | lines = result.stdout.splitlines() |
| 92 | return CommitHistory(lines) |
| 93 | |
| 94 | def __init__(self, lines): |
| 95 | commits = {} |
no test coverage detected