File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,18 +57,18 @@ def __init__(self, api_keys: Dict = {}):
57
57
}
58
58
if self .location :
59
59
os .environ ["GOOGLE_APPLICATION_CREDENTIALS" ] = self .location
60
- self .__set_remaing_clients (clients_init_payload )
60
+ self .__set_remaining_clients (clients_init_payload )
61
61
else :
62
62
if not check_empty_values (self .api_settings ):
63
63
credentials = service_account .Credentials .from_service_account_info (
64
64
self .api_settings
65
65
)
66
66
clients_init_payload ["credentials" ] = credentials
67
- self .__set_remaing_clients (clients_init_payload )
67
+ self .__set_remaining_clients (clients_init_payload )
68
68
69
69
aiplatform .init (project = self .project_id , ** clients_init_payload )
70
70
71
- def __set_remaing_clients (self , payload : Dict ):
71
+ def __set_remaining_clients (self , payload : Dict ):
72
72
self .clients = {
73
73
** self .clients ,
74
74
"image" : vision .ImageAnnotatorClient (** payload ),
You can’t perform that action at this time.
0 commit comments