Skip to content

Commit bdc05ad

Browse files
committed
fix py2
1 parent 97952cb commit bdc05ad

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ Then additional methods with the ``_async`` suffix will be added to modules crea
328328
329329
import asyncio
330330
import aiohttp
331-
from auth0.v3 import asyncify
331+
from auth0.v3.asyncify import asyncify
332332
from auth0.v3.management import Auth0, Users, Connections
333333
from auth0.v3.authentication import Users as AuthUsers
334334

auth0/v3/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from .asyncify import asyncify
21
from .exceptions import Auth0Error, RateLimitError, TokenValidationError
32

4-
__all__ = ("Auth0Error", "RateLimitError", "TokenValidationError", "asyncify")
3+
__all__ = ("Auth0Error", "RateLimitError", "TokenValidationError")

0 commit comments

Comments
 (0)