summaryrefslogtreecommitdiff
path: root/redis/features.py
blob: a96bac7c7748ae4e51d46cf30181daf61043e7f5 (plain)
1
2
3
4
5
try:
    import hiredis  # noqa
    HIREDIS_AVAILABLE = True
except ImportError:
    HIREDIS_AVAILABLE = False