Skip to content

Commit

Permalink
Sort imports alfabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
augusto-herrmann committed Sep 26, 2024
1 parent f88ae5d commit 2a8bbf9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@
import json

from fastapi import Depends, FastAPI, HTTPException, status, Header, Response
from fastapi.security import OAuth2PasswordRequestForm
from fastapi.responses import RedirectResponse, JSONResponse
from fastapi.security import OAuth2PasswordRequestForm
from sqlalchemy.exc import IntegrityError


import schemas
import crud
from db_config import DbContextManager, create_db_and_tables
import crud_auth
from db_config import DbContextManager, create_db_and_tables
import email_config
import response_schemas
import schemas
from util import check_permissions

ACCESS_TOKEN_EXPIRE_MINUTES = int(os.environ.get("ACCESS_TOKEN_EXPIRE_MINUTES"))
Expand Down

0 comments on commit 2a8bbf9

Please sign in to comment.