Skip to content

Commit

Permalink
fix: correct param type of _ClientFactoryMixin.from_service_account_i…
Browse files Browse the repository at this point in the history
…nfo method (#161)

Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-cloud-core/issues/new/choose) before writing your code!  That way we can discuss the change, evaluate designs, and agree on the general idea
- [x] Ensure the tests and linter pass
- [x] Code coverage does not decrease (if any source code was changed)
- [x] Appropriate docs were updated (if necessary)

Fixes #162  🦕
  • Loading branch information
yukihira1992 committed Nov 16, 2021
1 parent 45dcc73 commit 24b7de4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/cloud/client/__init__.py
Expand Up @@ -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).
Expand Down

0 comments on commit 24b7de4

Please sign in to comment.