Skip to content

Commit 2ca8068

Browse files
committed
correct imports
1 parent 7055c35 commit 2ca8068

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backend/create_admin.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
import os
77
from sqlmodel import Session, select
8-
from backend.database import engine
9-
from backend.models import Admin
10-
from backend.auth import get_password_hash
8+
from database import engine
9+
from models import Admin
10+
from auth import get_password_hash
1111

1212
def create_admin(username: str, password: str):
1313
with Session(engine) as session:

0 commit comments

Comments
 (0)