Skip to content

Commit

Permalink
Merge pull request #71 from RohanKaran/dependabot/pip/backend/uvicorn…
Browse files Browse the repository at this point in the history
…-0.20.0

Bump uvicorn from 0.18.3 to 0.20.0 in /backend
  • Loading branch information
RohanKaran authored Apr 3, 2023
2 parents 362b832 + 644574d commit 9e579a0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions backend/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@


def create_app():

app = FastAPI(
title="VaultSafe",
version="0.2.0",
Expand All @@ -26,7 +25,6 @@ def create_app():


def register_extensions(app: FastAPI):

app.add_middleware(
CORSMiddleware,
allow_origins=[config.FRONTEND_URL],
Expand Down
1 change: 0 additions & 1 deletion backend/app/api/endpoints/User/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ def login_refresh_token(db: Session, session_token: str) -> Dict[str, str]:

@staticmethod
def get_session_token(db: Session, user: User) -> Token:

token = crud.crud_user.get_session_token(db, db_obj=user)
if not token:
raise HTTPException(
Expand Down
2 changes: 1 addition & 1 deletion backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ python-jose==3.3.0
python-multipart==0.0.5
sendgrid==6.9.7
SQLAlchemy==1.4.42
uvicorn==0.18.3
uvicorn==0.20.0

0 comments on commit 9e579a0

Please sign in to comment.