Skip to content

Commit

Permalink
Merge pull request #11639 from mvdbeek/bootstrap_script_lint
Browse files Browse the repository at this point in the history
Fix linting error in bootstrap script
  • Loading branch information
jdavcs authored Mar 16, 2021
2 parents 3ae00d1 + 8d5c700 commit 1bbaec2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/bootstrap_history.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,8 +507,9 @@ def _get_prs(release_name, state="closed"):
yield pr


def main(argv, seen_prs=set()):
def main(argv, seen_prs=None):
newest_release = None
seen_prs = seen_prs or set()

if argv[1] == "--print-next-minor-version":
print_next_minor_version()
Expand Down

0 comments on commit 1bbaec2

Please sign in to comment.