From 673c986ff9c60d6d8928d5c5a27d366c37e141d1 Mon Sep 17 00:00:00 2001 From: Kostiantyn Kuleshov Date: Thu, 19 Jan 2023 22:15:07 +0200 Subject: [PATCH] Typo fixed --- sync_gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync_gen.py b/sync_gen.py index d280416..b43b060 100644 --- a/sync_gen.py +++ b/sync_gen.py @@ -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()