Skip to content

Commit e585d92

Browse files
committed
fixing pylint errors
1 parent af7ce06 commit e585d92

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

apps/wellknown/views/openid.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"permission-offline",
1919
"permission-patient",
2020
"permission-v1"
21-
]
21+
]
22+
2223

2324
@require_GET
2425
def openid_configuration(request):
@@ -31,6 +32,7 @@ def openid_configuration(request):
3132
data = build_endpoint_info(data, issuer=issuer, v2=v2)
3233
return JsonResponse(data)
3334

35+
3436
@require_GET
3537
def smart_on_fhir_configuration(request):
3638
"""
@@ -105,6 +107,7 @@ def build_endpoint_info(data=OrderedDict(), v2=False, issuer=""):
105107
reverse('fhir_conformance_metadata' if not v2 else 'fhir_conformance_metadata_v2')
106108
return data
107109

110+
108111
def build_smart_config_endpoint(data=OrderedDict(), v2=False, issuer=""):
109112
"""
110113
construct the smart config endpoint response. Takes in
@@ -120,4 +123,4 @@ def build_smart_config_endpoint(data=OrderedDict(), v2=False, issuer=""):
120123
data["code_challenge_methods_supported"] = CODE_CHALLENGE_METHODS_SUPPORTED
121124
data["capabilities"] = CAPABILITIES
122125

123-
return data
126+
return data

0 commit comments

Comments
 (0)