Skip to content

Commit

Permalink
chore: legibility change
Browse files Browse the repository at this point in the history
  • Loading branch information
alukach committed Dec 2, 2024
1 parent b6d240d commit d08f85a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stac_auth_proxy/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def create_app(settings: Optional[Settings] = None) -> FastAPI:
path,
(
proxy.stream
if not path == settings.openapi_spec_endpoint
if path != settings.openapi_spec_endpoint
else openapi_handler
),
methods=methods,
Expand All @@ -54,7 +54,7 @@ def create_app(settings: Optional[Settings] = None) -> FastAPI:
path,
(
proxy.stream
if not path == settings.openapi_spec_endpoint
if path != settings.openapi_spec_endpoint
else openapi_handler
),
methods=methods,
Expand Down

0 comments on commit d08f85a

Please sign in to comment.