Skip to content

Commit

Permalink
adjust var name
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas ONeil <lucasoneil@gmail.com>
  • Loading branch information
loneil committed Nov 15, 2023
1 parent ec2e6c5 commit 757e758
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -931,11 +931,11 @@ async def innkeeper_config_handler(request: web.BaseRequest):
profile = mgr.profile

config = {
k: (
profile.context.settings[k]
key: (
profile.context.settings[key]
)
for k in profile.context.settings
if k
for key in profile.context.settings
if key
not in [
"admin.admin_api_key",
"multitenant.jwt_secret",
Expand Down

0 comments on commit 757e758

Please sign in to comment.