Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpspri committed Oct 6, 2024
1 parent 44cffdc commit a899f15
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions llama_deploy/control_plane/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ def __init__(
self.app = FastAPI()
if cors_origins:
self.app.add_middleware(
CORSMiddleware,
allow_origins=cors_origins,
allow_methods=["*"],
allow_headers=["*"],
)
CORSMiddleware,
allow_origins=cors_origins,
allow_methods=["*"],
allow_headers=["*"],
)
self.app.add_api_route("/", self.home, methods=["GET"], tags=["Control Plane"])
self.app.add_api_route(
"/process_message",
Expand Down

0 comments on commit a899f15

Please sign in to comment.