Skip to content

Commit

Permalink
Merge pull request #1086 from mulkieran/omit-parens
Browse files Browse the repository at this point in the history
Omit redundant parens
  • Loading branch information
mulkieran authored Jul 23, 2024
2 parents e53aede + efd43c1 commit bb1198b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/stratis_cli/_parser/_logical.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def verify(self, namespace, parser):
(
"debug",
{
"help": ("Miscellaneous filesystem-level debug commands"),
"help": "Miscellaneous filesystem-level debug commands",
"subcmds": FILESYSTEM_DEBUG_SUBCMDS,
},
),
Expand Down
2 changes: 1 addition & 1 deletion src/stratis_cli/_parser/_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def wrapped_func(*args):
{
"default": ReportKey.ENGINE_STATE,
"type": ReportKey,
"help": ("Name of the report to display"),
"help": "Name of the report to display",
"nargs": "?",
"choices": list(ReportKey),
},
Expand Down
2 changes: 1 addition & 1 deletion src/stratis_cli/_parser/_physical.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
(
"debug",
{
"help": ("Miscellaneous blockdev-level debug commands"),
"help": "Miscellaneous blockdev-level debug commands",
"subcmds": BLOCKDEV_DEBUG_SUBCMDS,
},
),
Expand Down
6 changes: 3 additions & 3 deletions src/stratis_cli/_parser/_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def _ensure_nat(arg):
"--clevis",
{
"type": Clevis,
"help": ("Specification for binding with Clevis."),
"help": "Specification for binding with Clevis.",
"choices": list(Clevis),
},
),
Expand Down Expand Up @@ -292,7 +292,7 @@ def _ensure_nat(arg):
(
"pool_name",
{
"help": ("Name of the pool for which to initialize the cache"),
"help": "Name of the pool for which to initialize the cache",
},
),
(
Expand Down Expand Up @@ -516,7 +516,7 @@ def _ensure_nat(arg):
(
"debug",
{
"help": ("Miscellaneous pool-level debug commands"),
"help": "Miscellaneous pool-level debug commands",
"subcmds": POOL_DEBUG_SUBCMDS,
},
),
Expand Down

0 comments on commit bb1198b

Please sign in to comment.