File tree Expand file tree Collapse file tree 16 files changed +13
-49
lines changed Expand file tree Collapse file tree 16 files changed +13
-49
lines changed Original file line number Diff line number Diff line change 3737from authress .models .access_request_response import AccessRequestResponse
3838from authress .models .claim_request import ClaimRequest
3939
40- from authress .http_client import HttpClient
4140from authress .api_response import ApiResponse
4241from authress .exceptions import ( # noqa: F401
4342 ApiTypeError ,
@@ -53,8 +52,6 @@ class AccessRecordsApi(object):
5352 """
5453
5554 def __init__ (self , api_client = None ):
56- if api_client is None :
57- api_client = HttpClient .get_default ()
5855 self .api_client = api_client
5956
6057 @validate_arguments
Original file line number Diff line number Diff line change 3737from authress .models .identity_collection import IdentityCollection
3838from authress .models .identity_request import IdentityRequest
3939
40- from authress .http_client import HttpClient
4140from authress .api_response import ApiResponse
4241from authress .exceptions import ( # noqa: F401
4342 ApiTypeError ,
@@ -53,8 +52,6 @@ class AccountsApi(object):
5352 """
5453
5554 def __init__ (self , api_client = None ):
56- if api_client is None :
57- api_client = HttpClient .get_default ()
5855 self .api_client = api_client
5956
6057 @validate_arguments
Original file line number Diff line number Diff line change 3030
3131from authress .models .application_delegation import ApplicationDelegation
3232
33- from authress .http_client import HttpClient
3433from authress .api_response import ApiResponse
3534from authress .exceptions import ( # noqa: F401
3635 ApiTypeError ,
@@ -46,8 +45,6 @@ class ApplicationsApi(object):
4645 """
4746
4847 def __init__ (self , api_client = None ):
49- if api_client is None :
50- api_client = HttpClient .get_default ()
5148 self .api_client = api_client
5249
5350 @validate_arguments
Original file line number Diff line number Diff line change 3232from authress .models .connection_collection import ConnectionCollection
3333from authress .models .user_connection_credentials import UserConnectionCredentials
3434
35- from authress .http_client import HttpClient
3635from authress .api_response import ApiResponse
3736from authress .exceptions import ( # noqa: F401
3837 ApiTypeError ,
@@ -48,8 +47,6 @@ class ConnectionsApi(object):
4847 """
4948
5049 def __init__ (self , api_client = None ):
51- if api_client is None :
52- api_client = HttpClient .get_default ()
5350 self .api_client = api_client
5451
5552 @validate_arguments
Original file line number Diff line number Diff line change 3636from authress .models .o_auth_token_request import OAuthTokenRequest
3737from authress .models .o_auth_token_response import OAuthTokenResponse
3838
39- from authress .http_client import HttpClient
4039from authress .api_response import ApiResponse
4140from authress .exceptions import ( # noqa: F401
4241 ApiTypeError ,
@@ -52,8 +51,6 @@ class ExtensionsApi(object):
5251 """
5352
5453 def __init__ (self , api_client = None ):
55- if api_client is None :
56- api_client = HttpClient .get_default ()
5754 self .api_client = api_client
5855
5956 @validate_arguments
Original file line number Diff line number Diff line change 3333from authress .models .group import Group
3434from authress .models .group_collection import GroupCollection
3535
36- from authress .http_client import HttpClient
3736from authress .api_response import ApiResponse
3837from authress .exceptions import ( # noqa: F401
3938 ApiTypeError ,
@@ -49,8 +48,6 @@ class GroupsApi(object):
4948 """
5049
5150 def __init__ (self , api_client = None ):
52- if api_client is None :
53- api_client = HttpClient .get_default ()
5451 self .api_client = api_client
5552
5653 @validate_arguments
Original file line number Diff line number Diff line change 3131from authress .models .account import Account
3232from authress .models .invite import Invite
3333
34- from authress .http_client import HttpClient
3534from authress .api_response import ApiResponse
3635from authress .exceptions import ( # noqa: F401
3736 ApiTypeError ,
@@ -47,8 +46,6 @@ class InvitesApi(object):
4746 """
4847
4948 def __init__ (self , api_client = None ):
50- if api_client is None :
51- api_client = HttpClient .get_default ()
5249 self .api_client = api_client
5350
5451 @validate_arguments
Original file line number Diff line number Diff line change 3434from authress .models .permissioned_resource_collection import PermissionedResourceCollection
3535from authress .models .resource_users_collection import ResourceUsersCollection
3636
37- from authress .http_client import HttpClient
3837from authress .api_response import ApiResponse
3938from authress .exceptions import ( # noqa: F401
4039 ApiTypeError ,
@@ -50,8 +49,6 @@ class ResourcePermissionsApi(object):
5049 """
5150
5251 def __init__ (self , api_client = None ):
53- if api_client is None :
54- api_client = HttpClient .get_default ()
5552 self .api_client = api_client
5653
5754 @validate_arguments
Original file line number Diff line number Diff line change 2828from authress .models .role import Role
2929from authress .models .role_collection import RoleCollection
3030
31- from authress .http_client import HttpClient
3231from authress .api_response import ApiResponse
3332from authress .exceptions import ( # noqa: F401
3433 ApiTypeError ,
@@ -44,8 +43,6 @@ class RolesApi(object):
4443 """
4544
4645 def __init__ (self , api_client = None ) -> None :
47- if api_client is None :
48- api_client = HttpClient .get_default ()
4946 self .api_client = api_client
5047
5148 @validate_arguments
Original file line number Diff line number Diff line change 3434from authress .models .client_access_key import ClientAccessKey
3535from authress .models .client_collection import ClientCollection
3636
37- from authress .http_client import HttpClient
3837from authress .api_response import ApiResponse
3938from authress .exceptions import ( # noqa: F401
4039 ApiTypeError ,
@@ -50,8 +49,6 @@ class ServiceClientsApi(object):
5049 """
5150
5251 def __init__ (self , api_client = None ):
53- if api_client is None :
54- api_client = HttpClient .get_default ()
5552 self .api_client = api_client
5653
5754 @validate_arguments
You can’t perform that action at this time.
0 commit comments