From 5de1bc9135016359691664c033489e49a9f1b6eb Mon Sep 17 00:00:00 2001 From: Pedro Nascimento Date: Fri, 30 Aug 2024 18:45:28 -0300 Subject: [PATCH] chore: Remove unused import in auth.py --- app/routers/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routers/auth.py b/app/routers/auth.py index 606c0e5..1155c88 100644 --- a/app/routers/auth.py +++ b/app/routers/auth.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- import io -from typing import Annotated, Optional +from typing import Annotated from fastapi import APIRouter, Depends, HTTPException, status from fastapi.security import OAuth2PasswordRequestForm