Skip to content

Commit 1620964

Browse files
Jenkinsopenstack-gerrit
authored andcommitted
Merge "Remove useless dest of option in volume v1&v2"
2 parents 067647b + cd18986 commit 1620964

3 files changed

Lines changed: 0 additions & 4 deletions

File tree

openstackclient/volume/v1/volume.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ def get_parser(self, prog_name):
175175
)
176176
parser.add_argument(
177177
'--force',
178-
dest='force',
179178
action='store_true',
180179
default=False,
181180
help=_('Attempt forced removal of volume(s), regardless of state '

openstackclient/volume/v2/volume.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ def get_parser(self, prog_name):
167167
)
168168
parser.add_argument(
169169
"--force",
170-
dest="force",
171170
action="store_true",
172171
default=False,
173172
help=_("Attempt forced removal of volume(s), regardless of state "

openstackclient/volume/v2/volume_type.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,12 @@ def get_parser(self, prog_name):
4747
public_group = parser.add_mutually_exclusive_group()
4848
public_group.add_argument(
4949
"--public",
50-
dest="public",
5150
action="store_true",
5251
default=False,
5352
help=_("Volume type is accessible to the public"),
5453
)
5554
public_group.add_argument(
5655
"--private",
57-
dest="private",
5856
action="store_true",
5957
default=False,
6058
help=_("Volume type is not accessible to the public"),

0 commit comments

Comments
 (0)