Skip to content

Commit 7a98dad

Browse files
authored
Reformat main.py with consistent indentation
1 parent 790bf7e commit 7a98dad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from fastapi import FastAPI, Depends, HTTPException, status
22
from sqlalchemy.orm import Session
33

4-
from .app import crud
4+
from . import crud
55
from . import models
66
from . import schemas
77
from .database import engine, Base, get_db
@@ -36,3 +36,4 @@ def get_user(user_id: int, db: Session = Depends(get_db)):
3636
if not u:
3737
raise HTTPException(status_code=404, detail="User not found")
3838
return u
39+

0 commit comments

Comments
 (0)