Skip to content

Commit

Permalink
fix: Idenation space to tab
Browse files Browse the repository at this point in the history
  • Loading branch information
its0x08 committed Feb 9, 2024
1 parent 13b2ce6 commit 683aa6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddg.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

ARGUMENTS = ArgumentParser(description='DuckDuckGo URL scraper by 0x08')
ARGUMENTS.add_argument('keyword', metavar='keyword', type=str, help='search string')
ARGUMENTS.add_argument('-n', dest='max_results', type=int, help='number of results (default: all)')
ARGUMENTS.add_argument('-n', dest='max_results', type=int, help='number of results(default: all)')
ARGUMENTS.add_argument('-t', dest='time', action=BooleanOptionalAction,
default=False, help='execution time')
ARGUMENTS.add_argument('-o', dest='file_output', type=str, help='save output to file')
Expand Down

0 comments on commit 683aa6c

Please sign in to comment.