Skip to content

Commit 12aa414

Browse files
committed
NPA-5880: formatting fixes for scripts
1 parent a9a5352 commit 12aa414

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/get_app_access_token_int.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
private_key = getenv("APPLICATION_CLIENT_PRIVATE_KEY").replace("\\n", "\n")
1010
config = ClientCredentialsConfig(
1111
environment=getenv("APIGEE_ENVIRONMENT"),
12-
identity_service_base_url=f"https://{getenv("APIGEE_ENVIRONMENT")}.api.service.nhs.uk/oauth2-mock",
12+
identity_service_base_url=f"https://{getenv('APIGEE_ENVIRONMENT')}.api.service.nhs.uk/oauth2-mock",
1313
client_id=client_id,
1414
jwt_private_key=private_key,
1515
jwt_kid=kid,

scripts/get_cis2_access_token_int.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
scope = "nhs-cis2"
99
config = AuthorizationCodeConfig(
1010
environment=getenv("APIGEE_ENVIRONMENT"),
11-
identity_service_base_url=f"https://{getenv("APIGEE_ENVIRONMENT")}.api.service.nhs.uk/oauth2-mock",
11+
identity_service_base_url=f"https://{getenv('APIGEE_ENVIRONMENT')}.api.service.nhs.uk/oauth2-mock",
1212
callback_url="https://oauth.pstmn.io/v1/browser-callback",
1313
client_id=getenv("APPLICATION_CLIENT_ID"),
1414
client_secret=getenv("APPLICATION_CLIENT_SECRET"),

scripts/get_nhs_login_access_token_int.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
scope = "nhs-login"
99
config = AuthorizationCodeConfig(
1010
environment=getenv("APIGEE_ENVIRONMENT"),
11-
identity_service_base_url=f"https://{getenv("APIGEE_ENVIRONMENT")}.api.service.nhs.uk/oauth2-mock",
11+
identity_service_base_url=f"https://{getenv('APIGEE_ENVIRONMENT')}.api.service.nhs.uk/oauth2-mock",
1212
callback_url="https://oauth.pstmn.io/v1/browser-callback",
1313
client_id=getenv("APPLICATION_CLIENT_ID"),
1414
client_secret=getenv("APPLICATION_CLIENT_SECRET"),

0 commit comments

Comments
 (0)