Skip to content

Commit

Permalink
fix: add google.api_core.retry import to base.py (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 authored Jul 28, 2020
1 parent cbc73d7 commit 1d08e60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import pkg_resources

from google import auth
from google.api_core import gapic_v1 # type: ignore
from google.api_core import retry as retries # type: ignore
{%- if service.has_lro %}
from google.api_core import operations_v1 # type: ignore
{%- endif %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import pkg_resources
from google import auth
from google.api_core import exceptions # type: ignore
from google.api_core import gapic_v1 # type: ignore
from google.api_core import retry as retries # type: ignore
{%- if service.has_lro %}
from google.api_core import operations_v1 # type: ignore
{%- endif %}
Expand Down

0 comments on commit 1d08e60

Please sign in to comment.