Skip to content

Commit 6485a18

Browse files
committed
Move rest
1 parent 1151a40 commit 6485a18

33 files changed

Lines changed: 34 additions & 34 deletions

auth0/v3/management/actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .rest import RestClient
1+
from auth0.v3.rest import RestClient
22

33

44
class Actions(object):

auth0/v3/management/asyncify.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import asyncio
2-
31
import aiohttp
42

5-
from .rest_async import AsyncRestClient
3+
from auth0.v3.rest_async import AsyncRestClient
64

75

86
def _gen_async(client, method):

auth0/v3/management/attack_protection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .rest import RestClient
1+
from auth0.v3.rest import RestClient
22

33

44
class AttackProtection(object):

auth0/v3/management/blacklists.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .rest import RestClient
1+
from auth0.v3.rest import RestClient
22

33

44
class Blacklists(object):

auth0/v3/management/client_grants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .rest import RestClient
1+
from auth0.v3.rest import RestClient
22

33

44
class ClientGrants(object):

auth0/v3/management/clients.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .rest import RestClient
1+
from auth0.v3.rest import RestClient
22

33

44
class Clients(object):

auth0/v3/management/connections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .rest import RestClient
1+
from auth0.v3.rest import RestClient
22

33

44
class Connections(object):

auth0/v3/management/custom_domains.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .rest import RestClient
1+
from auth0.v3.rest import RestClient
22

33

44
class CustomDomains(object):

auth0/v3/management/device_credentials.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .rest import RestClient
1+
from auth0.v3.rest import RestClient
22

33

44
class DeviceCredentials(object):

auth0/v3/management/email_templates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .rest import RestClient
1+
from auth0.v3.rest import RestClient
22

33

44
class EmailTemplates(object):

0 commit comments

Comments
 (0)