Skip to content

Commit

Permalink
precommit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorwalton committed Feb 9, 2024
1 parent b3f3968 commit 46da51c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions backend/copilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down Expand Up @@ -139,7 +139,6 @@ async def init_db():
scheduler.start()



@app.get("/")
def hello():
return {"message": "CoPilot - We Made It!"}
Expand Down

0 comments on commit 46da51c

Please sign in to comment.