Universally use double quotes for strings.
This commit is contained in:
parent
7925281ceb
commit
1ee4ea4dc6
3 changed files with 33 additions and 33 deletions
|
@ -11,8 +11,8 @@ class Base(Command):
|
|||
def get_parser(self, prog_name):
|
||||
parser = super().get_parser(prog_name)
|
||||
parser.add_argument(
|
||||
'--doom', default=pathlib.Path.home().joinpath("doom"))
|
||||
parser.add_argument('--config-name', default='config.toml')
|
||||
"--doom", default=pathlib.Path.home().joinpath("doom"))
|
||||
parser.add_argument("--config-name", default="config.toml")
|
||||
return parser
|
||||
|
||||
def init_base(self, parsed_args):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue