Skip to content

Commit 1348940

Browse files
committed
Fix merge issues
1 parent a6af9aa commit 1348940

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

backend/app/server.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
from contextlib import asynccontextmanager
33
from typing import Union
44

5-
from backend.app.routes import send_email
65
from dotenv import load_dotenv
76
from fastapi import FastAPI
87

98
load_dotenv()
109

1110
# we need to load env variables before initialization code runs
1211
from . import models # noqa: E402
13-
from .routes import user # noqa: E402
12+
from .routes import send_email, user # noqa: E402
1413
from .utilities.constants import LOGGER_NAME
1514
from .utilities.firebase_init import initialize_firebase # noqa: E402
1615

0 commit comments

Comments
 (0)