trivial: Remove errant trailing commas

This throws ruff-format, which we're going to be applying soon enough.

Change-Id: I8d9e76c6f7e5da97da97877d4cbe02780fd90b2e
This commit is contained in:
Stephen Finucane 2024-08-15 14:11:26 +01:00
parent 4735db3ed9
commit c05e237a8a

View File

@ -303,12 +303,8 @@ class ApplicationCredential(loading.BaseV3Loader):
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'),
])
@ -381,13 +377,9 @@ class OAuth2ClientCredential(loading.BaseV3Loader):
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,