Skip to content

Commit

Permalink
trivial: Remove errant trailing commas
Browse files Browse the repository at this point in the history
This throws ruff-format, which we're going to be applying soon enough.

Change-Id: I8d9e76c6f7e5da97da97877d4cbe02780fd90b2e
  • Loading branch information
stephenfin committed Sep 10, 2024
1 parent 4735db3 commit c05e237
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions keystoneauth1/loading/_plugins/identity/v3.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,12 +303,8 @@ def get_options(self):
loading.Opt('application_credential_secret', secret=True,
required=True,
help="Application credential auth secret"),
]),
options.extend([
loading.Opt('application_credential_id',
help='Application credential ID'),
]),
options.extend([
loading.Opt('application_credential_name',
help='Application credential name'),
])
Expand Down Expand Up @@ -381,13 +377,9 @@ def get_options(self):
loading.Opt('oauth2_endpoint',
required=True,
help='Endpoint for OAuth2.0'),
]),
options.extend([
loading.Opt('oauth2_client_id',
required=True,
help='Client id for OAuth2.0'),
]),
options.extend([
loading.Opt('oauth2_client_secret',
secret=True,
required=True,
Expand Down

0 comments on commit c05e237

Please sign in to comment.