From b5f9d3559856a25c16e573eab2b04318fdda5bf6 Mon Sep 17 00:00:00 2001 From: Ian Hunter Date: Fri, 17 Nov 2023 11:56:41 +0000 Subject: [PATCH] fix trailing whitespace --- src/python/code/gnoll/__main__.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/python/code/gnoll/__main__.py b/src/python/code/gnoll/__main__.py index 1182ef084..3f3e83e4a 100644 --- a/src/python/code/gnoll/__main__.py +++ b/src/python/code/gnoll/__main__.py @@ -18,13 +18,13 @@ def parse_cmdline_args(args): 'EXPR', nargs='+', help='a dice expression to evaluate' - '(multiple arguments will be joined with spaces)' + '(multiple arguments will be joined with spaces)' ) g = p.add_argument_group('main options') g.add_argument( - '-h', - '--help', + '-h', + '--help', action='help', help='show this help message and exit' ) @@ -42,26 +42,26 @@ def parse_cmdline_args(args): g = p.add_argument_group('debugging options') g.add_argument( - '-v', - '--verbose', + '-v', + '--verbose', action='store_true', help='enable verbosity' ) g.add_argument( - '--keep-temp-file', + '--keep-temp-file', action='store_true', help="don't delete the created temporary file" ) g.add_argument( - '--mock', - metavar='TYPE', + '--mock', + metavar='TYPE', type=int, help='mocking type' ) g.add_argument( - '--mock-const', - metavar='N', - type=int, + '--mock-const', + metavar='N', + type=int, default=3, help='mocking constant' )