Skip to content

Commit 5f37acd

Browse files
committed
[typo] fix naming in method
1 parent 3b530e2 commit 5f37acd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

edenai_apis/apis/google/google_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,18 @@ def __init__(self, api_keys: Dict = {}):
5757
}
5858
if self.location:
5959
os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = self.location
60-
self.__set_remaing_clients(clients_init_payload)
60+
self.__set_remaining_clients(clients_init_payload)
6161
else:
6262
if not check_empty_values(self.api_settings):
6363
credentials = service_account.Credentials.from_service_account_info(
6464
self.api_settings
6565
)
6666
clients_init_payload["credentials"] = credentials
67-
self.__set_remaing_clients(clients_init_payload)
67+
self.__set_remaining_clients(clients_init_payload)
6868

6969
aiplatform.init(project=self.project_id, **clients_init_payload)
7070

71-
def __set_remaing_clients(self, payload: Dict):
71+
def __set_remaining_clients(self, payload: Dict):
7272
self.clients = {
7373
**self.clients,
7474
"image": vision.ImageAnnotatorClient(**payload),

0 commit comments

Comments
 (0)