Skip to content

Commit 17e6545

Browse files
committed
trivial: Remove unnecessary trailing comma
Change-Id: I62402145c17f96626ec6e29598e32dee03a6038e Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
1 parent 2ba9058 commit 17e6545

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

openstackclient/network/v2/floating_ip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ def get_parser(self, prog_name):
448448
'--port',
449449
metavar='<port>',
450450
help=_("Associate the floating IP with port (name or ID)"),
451-
),
451+
)
452452
parser.add_argument(
453453
'--fixed-ip-address',
454454
metavar='<ip-address>',

openstackclient/network/v2/floating_ip_port_forwarding.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def get_parser(self, prog_name):
144144
"The protocol used in the floating IP "
145145
"port forwarding, for instance: TCP, UDP"
146146
),
147-
),
147+
)
148148
parser.add_argument(
149149
'--description',
150150
metavar='<description>',
@@ -404,7 +404,7 @@ def get_parser(self, prog_name):
404404
metavar='<protocol>',
405405
choices=['tcp', 'udp'],
406406
help=_("The IP protocol used in the floating IP port forwarding"),
407-
),
407+
)
408408
parser.add_argument(
409409
'--description',
410410
metavar='<description>',

openstackclient/network/v2/subnet_pool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def get_parser(self, prog_name):
201201
"as the number of IP addresses that can be allocated "
202202
"from the subnet pool"
203203
),
204-
),
204+
)
205205
_tag.add_tag_option_to_parser_for_create(parser, _('subnet pool'))
206206
return parser
207207

@@ -433,7 +433,7 @@ def get_parser(self, prog_name):
433433
"as the number of IP addresses that can be allocated "
434434
"from the subnet pool"
435435
),
436-
),
436+
)
437437
_tag.add_tag_option_to_parser_for_set(parser, _('subnet pool'))
438438

439439
return parser

0 commit comments

Comments
 (0)