We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca8fec8 commit 83a229aCopy full SHA for 83a229a
1 file changed
src/cachier/cores/sql.py
@@ -22,17 +22,9 @@
22
)
23
from sqlalchemy.engine import Engine
24
from sqlalchemy.orm import declarative_base, sessionmaker
25
-
26
SQLALCHEMY_AVAILABLE = True
27
except ImportError:
28
SQLALCHEMY_AVAILABLE = False
29
- import warnings
30
31
- warnings.warn(
32
- "`SQLAlchemy` was not found. SQL cores will not function.",
33
- ImportWarning,
34
- stacklevel=2,
35
- )
36
37
from .._types import HashFunc
38
from ..config import CacheEntry
0 commit comments