Skip to content

Commit

Permalink
Merge pull request #58 from Snailedlt/feature/check_if_pr_base_is_dev…
Browse files Browse the repository at this point in the history
…elop

fix order of args
  • Loading branch information
Snailedlt authored Oct 15, 2022
2 parents 18568f6 + e48bb5f commit b76fa82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/scripts/build_assets/arg_getters.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ def get_check_icon_pr_args():
"""
parser = ArgumentParser(description="Check the SVGs to ensure their attributes are correct. Run whenever a PR is opened")

parser.add_argument("token",
help="The GitHub token to access the GitHub REST API.")

parser.add_argument("pr_title",
help="The title of the PR that we are peeking at")

parser.add_argument("pr_number",
help="The number of the PR that we are peeking at")

parser.add_argument("token",
help="The GitHub token to access the GitHub REST API.")

parser.add_argument("icons_folder_path",
help="The path to the icons folder",
action=PathResolverAction)
Expand Down

0 comments on commit b76fa82

Please sign in to comment.