diff options
Diffstat (limited to '')
| -rwxr-xr-x | python/main.py | 11 | 
1 files changed, 7 insertions, 4 deletions
| 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 | 
