Skip to content

Commit

Permalink
Local plotting: Renaming function
Browse files Browse the repository at this point in the history
  • Loading branch information
Coersi99 committed Jan 24, 2024
1 parent 94f38ac commit 77749e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions local_plotting/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
-> creates image_details_{time}.html file
'''

def parse_args():
def add_args():
parser = argparse.ArgumentParser(description="Visualize local native image build data from last n GitHub commits using setup-graalvm action.")
parser.add_argument("repo_path", help="Path to your GitHub repository")
parser.add_argument("branch", help="Name of the branch")
Expand All @@ -25,7 +25,7 @@ def parse_args():
return parser.parse_args()

def main():
args = parse_args()
args = add_args()

repo_path = args.repo_path
branch = args.branch
Expand Down

0 comments on commit 77749e1

Please sign in to comment.