Skip to content

Commit ce09628

Browse files
authored
omit resource key from params if it is empty (#12)
1 parent d7855a8 commit ce09628

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ async def login_endpoint():
134134
"scope": CONFIG["SCOPE"],
135135
}
136136
# optional param for special cases
137-
if "RESOURCE" in CONFIG:
138-
params["resource"] = CONFIG["RESOURCE"]
137+
if resource := CONFIG.get("RESOURCE", ""):
138+
params["resource"] = resource
139139

140140
# prepare the redirection response
141141
url = CONFIG["url_auth"] + "?" + urlencode(params)

0 commit comments

Comments
 (0)