Signed-off-by: Jeroen Oudshoorn <oudshoorn.jeroen@gmail.com>
This commit is contained in:
Jeroen Oudshoorn
2023-10-13 00:05:06 +02:00
parent 522f07b0d8
commit 731932c9e3
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ def add_parsers(subparsers):
parser_google_auth = google_subparsers.add_parser('auth', help='Google Authentication')
parser_google_auth.add_argument('bool', type=bool, help="This will start the authentication process")
return parser
return subparsers
def used_google_cmd(args):

View File

@ -58,7 +58,7 @@ def add_parsers(subparsers):
parser_plugins_edit = plugin_subparsers.add_parser('edit', help='Edit the options')
parser_plugins_edit.add_argument('name', type=str, help='Name of the plugin')
return parser
return subparsers
def used_plugin_cmd(args):