Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

Commit

Permalink
fix: adds missing whitespace (#3179)
Browse files Browse the repository at this point in the history
fixes #3178

Co-authored-by: Mira Leung <miraleung@users.noreply.github.com>
  • Loading branch information
danoscarmike and miraleung committed Jun 1, 2020
1 parent 3bd90a3 commit 17fbb3b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
@private body(hasEnums, requireViews)
if sys.version_info[:2] == (2, 7):
message = (
'A future version of this library will drop support for Python 2.7.'
'More details about Python 2 support for Google Cloud Client Libraries'
'A future version of this library will drop support for Python 2.7. '
'More details about Python 2 support for Google Cloud Client Libraries '
'can be found at https://cloud.google.com/python/docs/python2-sunset/'
)
warnings.warn(message, DeprecationWarning)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -884,8 +884,8 @@ from google.cloud.example.library_v1.gapic import my_proto_client

if sys.version_info[:2] == (2, 7):
message = (
'A future version of this library will drop support for Python 2.7.'
'More details about Python 2 support for Google Cloud Client Libraries'
'A future version of this library will drop support for Python 2.7. '
'More details about Python 2 support for Google Cloud Client Libraries '
'can be found at https://cloud.google.com/python/docs/python2-sunset/'
)
warnings.warn(message, DeprecationWarning)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -841,8 +841,8 @@ from google.cloud.example_v1.gapic.foo import incrementer_service_client

if sys.version_info[:2] == (2, 7):
message = (
'A future version of this library will drop support for Python 2.7.'
'More details about Python 2 support for Google Cloud Client Libraries'
'A future version of this library will drop support for Python 2.7. '
'More details about Python 2 support for Google Cloud Client Libraries '
'can be found at https://cloud.google.com/python/docs/python2-sunset/'
)
warnings.warn(message, DeprecationWarning)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -790,8 +790,8 @@ from example.gapic import no_templates_api_service_client

if sys.version_info[:2] == (2, 7):
message = (
'A future version of this library will drop support for Python 2.7.'
'More details about Python 2 support for Google Cloud Client Libraries'
'A future version of this library will drop support for Python 2.7. '
'More details about Python 2 support for Google Cloud Client Libraries '
'can be found at https://cloud.google.com/python/docs/python2-sunset/'
)
warnings.warn(message, DeprecationWarning)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -884,8 +884,8 @@ from google.cloud.example.library_v1.gapic import my_proto_client

if sys.version_info[:2] == (2, 7):
message = (
'A future version of this library will drop support for Python 2.7.'
'More details about Python 2 support for Google Cloud Client Libraries'
'A future version of this library will drop support for Python 2.7. '
'More details about Python 2 support for Google Cloud Client Libraries '
'can be found at https://cloud.google.com/python/docs/python2-sunset/'
)
warnings.warn(message, DeprecationWarning)
Expand Down

0 comments on commit 17fbb3b

Please sign in to comment.