Skip to content

Commit 7ab9dd0

Browse files
committed
updated ruff conflicting file name
1 parent b74cc47 commit 7ab9dd0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

backend/app/server.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
from contextlib import asynccontextmanager
33
from typing import Union
44

5+
from backend.app.routes import send_email
56
from dotenv import load_dotenv
67
from fastapi import FastAPI
78

8-
from app.routes import email
9-
109
load_dotenv()
1110

1211
# we need to load env variables before initialization code runs
@@ -31,7 +30,7 @@ async def lifespan(_: FastAPI):
3130
app = FastAPI(lifespan=lifespan)
3231
app.include_router(user.router)
3332

34-
app.include_router(email.router)
33+
app.include_router(send_email.router)
3534

3635

3736
@app.get("/")

0 commit comments

Comments
 (0)