(self)
| 87 | for d in dates()] |
| 88 | |
| 89 | def make_me_a_rockstar(self): |
| 90 | self.repo = git.Repo.init(self.repo_path) |
| 91 | label = 'Making you a Rockstar Programmer' |
| 92 | with click.progressbar(self._get_dates_list(), label=label) as bar: |
| 93 | for commit_date in bar: |
| 94 | self._edit_and_commit(str(uuid.uuid1()), commit_date) |
| 95 | self._make_last_commit() |
| 96 | print('\nYou are now a Rockstar Programmer!') |
| 97 | |
| 98 | |
| 99 | @click.command() |
no test coverage detected