Closed schuberty closed 2 years ago
I am getting this as well. It looks like it's coming from these two print statements in fastapi_mail/email_utils/email_check.py
.
try:
import aioredis
redis_lib = True
except ImportError as error:
redis_lib = False
print(error)
try:
import httpx
request_lib = True
except ImportError as error:
request_lib = False
print(error)
Can we remove the print statements? It looks like the code is setup to optionally function without those packages by design.
Any thoughts @sabuhish? It looks like you may have worked on that part last. Thanks!!
Any news about it?
Changes have already been merged and released, thanks for your help guys! I will close this issue now.
Please use version 1.1.5
. Thanks!
After I installed fastapi-mail 1.1.4 and set it up in my app, I started getting the following "no module found" messages when I import things related to the package, e.g.:
I can delete my whole environment, reinstall it and it keeps coming back.