Skip to content

Commit

Permalink
fix trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
ianfhunter authored Nov 17, 2023
1 parent 5875f39 commit b5f9d35
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/python/code/gnoll/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
)
Expand All @@ -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'
)
Expand Down

0 comments on commit b5f9d35

Please sign in to comment.