Typo fixed

This commit is contained in:
Profitroll 2023-01-19 22:15:07 +02:00
parent 453c3e95dd
commit 673c986ff9
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ parser = ArgumentParser(
parser.add_argument("-u", "--username", help="Enter username without input prompt", action="store")
parser.add_argument("-e", "--email", help="Enter email without input prompt", action="store")
parser.add_argument("-l", "--local", help="Do not save user's email to make it completely local and unrecoverable", action="store_trues")
parser.add_argument("-l", "--local", help="Do not save user's email to make it completely local and unrecoverable", action="store_true")
parser.add_argument("-j", "--json", help="Return output as a json. Username must be provided as an argument", action="store_true")
args = parser.parse_args()