Skip to content

Commit

Permalink
small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
deeleeramone committed Dec 5, 2024
1 parent dcd81ad commit 61ff2f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openbb_platform/core/openbb_core/api/rest_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ async def lifespan(_: FastAPI):
if uvicorn_reload is None or uvicorn_reload:
uvicorn_kwargs["reload"] = True

uvicorn_app = uvicorn_kwargs.pop("app", None) or "openbb_core.api.rest_api:app"
uvicorn_app = uvicorn_kwargs.pop("app", "openbb_core.api.rest_api:app")

uvicorn.run(uvicorn_app, **uvicorn_kwargs)

0 comments on commit 61ff2f3

Please sign in to comment.