Fix broken imports in redis/__init__.pyi

This is needed by #786.
This commit is contained in:
Lukasz Langa
2016-12-21 17:24:31 -08:00
parent cfe1cbb426
commit 231ed7bb89

View File

@@ -2,10 +2,10 @@
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
import redis.client
import redis.connection
import redis.utils
import redis.exceptions
from . import client
from . import connection
from . import utils
from . import exceptions
Redis = client.Redis
StrictRedis = client.StrictRedis