Skip to content

Commit 653804a

Browse files
committed
updated ruff conflicting file name
1 parent a6b0ff5 commit 653804a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/app/server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from fastapi import FastAPI
66

77
from . import models
8-
from .routes import email, user
8+
from .routes import send_email, user
99
from .utilities.constants import LOGGER_NAME
1010
from .utilities.firebase_init import initialize_firebase
1111

@@ -26,7 +26,7 @@ async def lifespan(_: FastAPI):
2626
app = FastAPI(lifespan=lifespan)
2727
app.include_router(user.router)
2828

29-
app.include_router(email.router)
29+
app.include_router(send_email.router)
3030

3131

3232
@app.get("/")

0 commit comments

Comments
 (0)