precommit fixes
Taylor committed
Feb 9, 2024 at 10:01 UTC
46da51ca73ac55c7bb2edb9d6e91449707e5a076
1 file changed
+2
-3
backend/copilot.py
+2
-3
@@ -59,8 +59,8 @@ auth_handler = AuthHandler()
59
load_dotenv()
60
server_ip = os.getenv("SERVER_IP", "localhost")
61
# Not needed for now
62
-#ssl_keyfile = os.path.join(os.path.dirname(__file__), "../nginx/server.key")
63
-#ssl_certfile = os.path.join(os.path.dirname(__file__), "../nginx/server.crt")
62
+# ssl_keyfile = os.path.join(os.path.dirname(__file__), "../nginx/server.key")
63
+# ssl_certfile = os.path.join(os.path.dirname(__file__), "../nginx/server.crt")
64
65
app = FastAPI(description="CoPilot API", version="0.1.0", title="CoPilot API")
66
@@ -139,7 +139,6 @@ async def init_db():
139
scheduler.start()
140
141
142
-
142
@app.get("/")
143
def hello():
144
return {"message": "CoPilot - We Made It!"}