File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 25
25
YOTI_API_URL = environ .get ("YOTI_API_URL" , DEFAULTS ["YOTI_API_URL" ])
26
26
YOTI_API_PORT = environ .get ("YOTI_API_PORT" , DEFAULTS ["YOTI_API_PORT" ])
27
27
YOTI_API_VERSION = environ .get ("YOTI_API_VERSION" , DEFAULTS ["YOTI_API_VERSION" ])
28
- YOTI_API_ENDPOINT = "{0}:{1}/api/{2}" .format (
28
+ YOTI_API_ENDPOINT = environ . get ( "YOTI_API_ENDPOINT" , "{0}:{1}/api/{2}" .format (
29
29
YOTI_API_URL , YOTI_API_PORT , YOTI_API_VERSION
30
- )
30
+ ))
31
31
32
32
YOTI_API_VERIFY_SSL = environ .get ("YOTI_API_VERIFY_SSL" , DEFAULTS ["YOTI_API_VERIFY_SSL" ])
33
33
if YOTI_API_VERIFY_SSL .lower () == "false" :
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ def get_attribute(self, attribute_name):
57
57
58
58
class Profile (BaseProfile ):
59
59
def __init__ (self , profile_attributes ):
60
- super ( Profile , self ) .__init__ (profile_attributes )
60
+ BaseProfile .__init__ (self , profile_attributes )
61
61
self .ensure_postal_address ()
62
62
63
63
@property
@@ -182,7 +182,7 @@ def ensure_postal_address(self):
182
182
def ApplicationProfile (BaseProfile ):
183
183
184
184
def __init__ (self , profile_attributes ):
185
- super ( ApplicationProfile , self ) .__init__ (profile_attributes )
185
+ BaseProfile .__init__ (self , profile_attributes )
186
186
187
187
@property
188
188
def application_name (self ):
You can’t perform that action at this time.
0 commit comments