(self)
| 157 | return data |
| 158 | |
| 159 | def write_to_disk(self): |
| 160 | data = {commit: features._asdict() for commit, features in self.data.items()} |
| 161 | with open(self.path, "w") as f: |
| 162 | json.dump(data, f) |
| 163 | |
| 164 | |
| 165 | def get_commits_between(base_version, new_version): |