From fdfffbfe3e22b15282021a6649dab8c28e34ad4d Mon Sep 17 00:00:00 2001 From: Takayuki Hirayama Date: Tue, 16 Nov 2021 18:21:25 +0900 Subject: [PATCH] fix: correct param type of _ClientFactoryMixin.from_service_account_info method --- google/cloud/client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/cloud/client/__init__.py b/google/cloud/client/__init__.py index 5bd12f2..d77e200 100644 --- a/google/cloud/client/__init__.py +++ b/google/cloud/client/__init__.py @@ -55,7 +55,7 @@ class _ClientFactoryMixin(object): def from_service_account_info(cls, info, *args, **kwargs): """Factory to retrieve JSON credentials while creating client. - :type info: str + :type info: dict :param info: The JSON object with a private key and other credentials information (downloaded from the Google APIs console).