We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6af303e commit c2b38f3Copy full SHA for c2b38f3
auth0/asyncify.py
@@ -22,7 +22,7 @@ def asyncify(cls):
22
if callable(getattr(cls, func)) and not func.startswith("_")
23
]
24
25
- class BareAsyncClient(cls):
+ class UsersAsyncClient(cls):
26
def __init__(
27
self,
28
domain,
@@ -81,7 +81,7 @@ class Wrapper(cls):
81
def __init__(self, *args, **kwargs):
82
super().__init__(*args, **kwargs)
83
if cls == Users:
84
- self._async_client = BareAsyncClient(*args, **kwargs)
+ self._async_client = UsersAsyncClient(*args, **kwargs)
85
elif AuthenticationBase in cls.__bases__:
86
self._async_client = AsyncAuthenticationClient(*args, **kwargs)
87
else:
0 commit comments