fix linting error

This commit is contained in:
Neil Martinsen-Burrell 2023-11-01 13:19:36 -05:00
parent 14fd0b7baa
commit f55014b8a8
No known key found for this signature in database
GPG key ID: 6A3C818CC10D0184

View file

@ -371,8 +371,7 @@ LOGGING = {
# each handler has its choice of format # each handler has its choice of format
"formatters": { "formatters": {
"verbose": { "verbose": {
"format": "[%(asctime)s] %(levelname)s [%(name)s:%(lineno)s] " "format": "[%(asctime)s] %(levelname)s [%(name)s:%(lineno)s] %(message)s",
"%(message)s",
"datefmt": "%d/%b/%Y %H:%M:%S", "datefmt": "%d/%b/%Y %H:%M:%S",
}, },
"simple": { "simple": {
@ -515,13 +514,15 @@ OIDC_PROVIDERS = {
"acr_value": "http://idmanagement.gov/ns/assurance/ial/2", "acr_value": "http://idmanagement.gov/ns/assurance/ial/2",
}, },
"client_registration": { "client_registration": {
"client_id": "urn:gov:cisa:openidconnect.profiles:sp:sso:cisa:dotgov_registrar", "client_id": (
"urn:gov:cisa:openidconnect.profiles:sp:sso:cisa:dotgov_registrar"
),
"redirect_uris": [f"{env_base_url}/openid/callback/login/"], "redirect_uris": [f"{env_base_url}/openid/callback/login/"],
"post_logout_redirect_uris": [f"{env_base_url}/openid/callback/logout/"], "post_logout_redirect_uris": [f"{env_base_url}/openid/callback/logout/"],
"token_endpoint_auth_method": ["private_key_jwt"], "token_endpoint_auth_method": ["private_key_jwt"],
"sp_private_key": secret_login_key, "sp_private_key": secret_login_key,
}, },
} },
} }
# endregion # endregion