Skip to content

Commit

Permalink
Rename BareAsyncClient to UsersAsyncClient
Browse files Browse the repository at this point in the history
  • Loading branch information
cgearing committed Jul 24, 2023
1 parent 6af303e commit c2b38f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auth0/asyncify.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def asyncify(cls):
if callable(getattr(cls, func)) and not func.startswith("_")
]

class BareAsyncClient(cls):
class UsersAsyncClient(cls):
def __init__(
self,
domain,
Expand Down Expand Up @@ -81,7 +81,7 @@ class Wrapper(cls):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
if cls == Users:
self._async_client = BareAsyncClient(*args, **kwargs)
self._async_client = UsersAsyncClient(*args, **kwargs)
elif AuthenticationBase in cls.__bases__:
self._async_client = AsyncAuthenticationClient(*args, **kwargs)
else:
Expand Down

0 comments on commit c2b38f3

Please sign in to comment.