Skip to content

Commit

Permalink
Remove variable assignment error
Browse files Browse the repository at this point in the history
  • Loading branch information
sabuhish committed Oct 2, 2022
1 parent 74356d9 commit b6dcbf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastapi_mail/email_utils/email_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
import aioredis

redis_lib = True
except ImportError as error:
except ImportError:
redis_lib = False

try:
import httpx

request_lib = True
except ImportError as error:
except ImportError:
request_lib = False

from pydantic import EmailStr
Expand Down

0 comments on commit b6dcbf3

Please sign in to comment.