From 46da51ca73ac55c7bb2edb9d6e91449707e5a076 Mon Sep 17 00:00:00 2001 From: Taylor Date: Fri, 9 Feb 2024 10:01:46 -0600 Subject: [PATCH] precommit fixes --- backend/copilot.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/backend/copilot.py b/backend/copilot.py index 559e55bb..c440bc0d 100644 --- a/backend/copilot.py +++ b/backend/copilot.py @@ -59,8 +59,8 @@ load_dotenv() server_ip = os.getenv("SERVER_IP", "localhost") # Not needed for now -#ssl_keyfile = os.path.join(os.path.dirname(__file__), "../nginx/server.key") -#ssl_certfile = os.path.join(os.path.dirname(__file__), "../nginx/server.crt") +# ssl_keyfile = os.path.join(os.path.dirname(__file__), "../nginx/server.key") +# ssl_certfile = os.path.join(os.path.dirname(__file__), "../nginx/server.crt") app = FastAPI(description="CoPilot API", version="0.1.0", title="CoPilot API") @@ -139,7 +139,6 @@ async def init_db(): scheduler.start() - @app.get("/") def hello(): return {"message": "CoPilot - We Made It!"}