From 98cc484786ad9b0601133138e23a084522fbfc46 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Wed, 25 May 2022 21:35:07 +0430 Subject: update --- python/main.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'python') diff --git a/python/main.py b/python/main.py index 6649cb2..b68aa5b 100755 --- a/python/main.py +++ b/python/main.py @@ -16,12 +16,15 @@ class Argparser(object): def __init__(self): parser = argparse.ArgumentParser() parser.add_argument("--string", type=str, help="string") - parser.add_argument("--bool", action="store_true", - help="bool", default=False) - parser.add_argument("--dbg", action="store_true", - help="debug", default=False) + parser.add_argument( + "--bool", action="store_true", help="bool", default=False + ) + parser.add_argument( + "--dbg", action="store_true", help="debug", default=False + ) self.args = parser.parse_args() + # write code here -- cgit v1.2.3