From 77f16e10957cdad518f993c04f2e3c57a9370ac4 Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Mon, 24 Jan 2022 16:00:46 -0400 Subject: [PATCH] Fix indentation --- .../management/commands/create_oidc_client.py | 37 ++++++++++--------- 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/program/management/commands/create_oidc_client.py b/program/management/commands/create_oidc_client.py index 2e8974c2..dfb96241 100644 --- a/program/management/commands/create_oidc_client.py +++ b/program/management/commands/create_oidc_client.py @@ -8,34 +8,35 @@ from oidc_provider.models import Client, ResponseType class Command(BaseCommand): help = 'Sets up an OIDC client / relaying party. For details check out the' + \ - 'section on Relying Parties at https://django-oidc-provider.readthedocs.io' + 'section on Relying Parties at https://django-oidc-provider.readthedocs.io' def add_arguments(self, parser): parser.add_argument('name', type=str, - help='A label that you associate with this client') + help='A label that you associate with this client') parser.add_argument('client_type', type=str, choices=['public', 'confidential'], - help='The type of client can be either public or confidential') + help='The type of client can be either public or confidential') parser.add_argument('--client-id', type=int, dest='client_id', action='store', help='The client ID ') parser.set_defaults(client_id=None) parser.add_argument('--client-secret', type=str, dest='client_secret', action='store', help='The client secret') parser.set_defaults(client_secret=None) parser.add_argument('--no-require-consent', dest='require_consent', action='store_false', - help='By default user consent is required. Use this to skip user consent.') + help='By default user consent is required. Use this to skip user consent.') parser.add_argument('--no-reuse-consent', dest='reuse_consent', action='store_false', - help='By default user consent will be reused. Use this if the user should provide consent on every login.') + help='By default user consent will be reused. Use this if the user should provide consent on every login.') parser.set_defaults(require_consent=True, reuse_consent=True) parser.add_argument('-u', '--redirect-uri', type=str, action='append', - help='Redirect URI after successful authentication. Can be used more than once.') + help='Redirect URI after successful authentication. Can be used more than once.') parser.add_argument('-p', '--post-logout-redirect', type=str, action='append', - help='Post logout redirect URI. Can be used more than once.') + help='Post logout redirect URI. Can be used more than once.') parser.add_argument('-s', '--scope', type=str, action='append', - help='Authorized scope values for this client. Can be used more than once.') + help='Authorized scope values for this client. Can be used more than once.') parser.add_argument('-r', dest='response_types', action='append', - choices=['code', 'id_token', 'id_token token', 'code token', 'code id_token', 'code id_token token'], - help='The type of response the client will get.') + choices=['code', 'id_token', 'id_token token', 'code token', 'code id_token', + 'code id_token token'], + help='The type of response the client will get.') parser.add_argument('-i', '--id-only', dest='id_only', action='store_true', - help='Do not print anything else then the ID of the newly created client '+\ - '(and the client secret in case of confidential clients).') + help='Do not print anything else then the ID of the newly created client ' + \ + '(and the client secret in case of confidential clients).') parser.set_defaults(id_only=False) def handle(self, *args, **options): @@ -50,8 +51,8 @@ class Command(BaseCommand): client_id = random.randint(100000, 999999) counter += 1 if counter > 10000: - raise CommandError('Could not find a free client_id. Already'+ \ - ' tried 10000 times. There seems to be something seriously'+ \ + raise CommandError('Could not find a free client_id. Already' + + ' tried 10000 times. There seems to be something seriously' + ' wrong with your setup. Please inspect manually.') try: Client.objects.get(client_id=client_id) @@ -87,8 +88,8 @@ class Command(BaseCommand): ) c.save() except: - raise CommandError('Could not create an OpenID connect client' +\ - f' due to the following error: {sys.exc_info()}') + raise CommandError('Could not create an OpenID connect client' + + f' due to the following error: {sys.exc_info()}') if options['response_types']: try: @@ -96,8 +97,8 @@ class Command(BaseCommand): r = ResponseType.objects.get(value=r_value) c.response_types.add(r) except: - raise CommandError('Client was stored, but could not set response_types'+\ - f' due to the following error: {sys.exc_info()}') + raise CommandError('Client was stored, but could not set response_types' + + f' due to the following error: {sys.exc_info()}') if show_results: if options["id_only"]: -- GitLab