trivial: Remove unnecessary trailing comma

Change-Id: I62402145c17f96626ec6e29598e32dee03a6038e
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This commit is contained in:
Stephen Finucane 2024-02-16 15:06:35 +00:00
parent 2ba90581d5
commit 17e6545fd4
3 changed files with 5 additions and 5 deletions

View File

@ -448,7 +448,7 @@ class SetFloatingIP(common.NeutronCommandWithExtraArgs):
'--port',
metavar='<port>',
help=_("Associate the floating IP with port (name or ID)"),
),
)
parser.add_argument(
'--fixed-ip-address',
metavar='<ip-address>',

View File

@ -144,7 +144,7 @@ class CreateFloatingIPPortForwarding(
"The protocol used in the floating IP "
"port forwarding, for instance: TCP, UDP"
),
),
)
parser.add_argument(
'--description',
metavar='<description>',
@ -404,7 +404,7 @@ class SetFloatingIPPortForwarding(common.NeutronCommandWithExtraArgs):
metavar='<protocol>',
choices=['tcp', 'udp'],
help=_("The IP protocol used in the floating IP port forwarding"),
),
)
parser.add_argument(
'--description',
metavar='<description>',

View File

@ -201,7 +201,7 @@ class CreateSubnetPool(command.ShowOne, common.NeutronCommandWithExtraArgs):
"as the number of IP addresses that can be allocated "
"from the subnet pool"
),
),
)
_tag.add_tag_option_to_parser_for_create(parser, _('subnet pool'))
return parser
@ -433,7 +433,7 @@ class SetSubnetPool(common.NeutronCommandWithExtraArgs):
"as the number of IP addresses that can be allocated "
"from the subnet pool"
),
),
)
_tag.add_tag_option_to_parser_for_set(parser, _('subnet pool'))
return parser