Skip to content

Commit

Permalink
Update help for -o in src/github_downloader.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KarimPwnz committed Jun 14, 2022
1 parent f96c140 commit eb81822
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/github_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ async def download_and_save(self, url):
async def main():
setup_logging()
parser = argparse.ArgumentParser()
parser.add_argument("-o", "--output", help="Output file path", default="out")
parser.add_argument(
"-o", "--output", help="Output file path (default: 'out')", default="out"
)
parser.add_argument(
"-l",
dest="limit",
Expand Down

0 comments on commit eb81822

Please sign in to comment.