mirror of
https://github.com/nvbn/thefuck.git
synced 2025-03-20 01:28:56 +00:00
Fix missing comma in thefuck/argument_parser.py
Co-Authored-By: lomckee <cstutoringluke@gmail.com>
This commit is contained in:
parent
b3299ea7e1
commit
9ef1ed5d31
@ -55,7 +55,7 @@ class Parser(object):
|
|||||||
"""It's too dangerous to use `-y` and `-r` together."""
|
"""It's too dangerous to use `-y` and `-r` together."""
|
||||||
group = self._parser.add_mutually_exclusive_group()
|
group = self._parser.add_mutually_exclusive_group()
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
'-y', '--yes', '--yeah', '--hard'
|
'-y', '--yes', '--yeah', '--hard',
|
||||||
action='store_true',
|
action='store_true',
|
||||||
help='execute fixed command without confirmation')
|
help='execute fixed command without confirmation')
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user