Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c2b38f3

Browse files
committed
Rename BareAsyncClient to UsersAsyncClient
1 parent 6af303e commit c2b38f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

auth0/asyncify.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def asyncify(cls):
2222
if callable(getattr(cls, func)) and not func.startswith("_")
2323
]
2424

25-
class BareAsyncClient(cls):
25+
class UsersAsyncClient(cls):
2626
def __init__(
2727
self,
2828
domain,
@@ -81,7 +81,7 @@ class Wrapper(cls):
8181
def __init__(self, *args, **kwargs):
8282
super().__init__(*args, **kwargs)
8383
if cls == Users:
84-
self._async_client = BareAsyncClient(*args, **kwargs)
84+
self._async_client = UsersAsyncClient(*args, **kwargs)
8585
elif AuthenticationBase in cls.__bases__:
8686
self._async_client = AsyncAuthenticationClient(*args, **kwargs)
8787
else:

0 commit comments

Comments
 (0)