Skip to content

Commit 800334a

Browse files
authored
Merge pull request #2942 from daspecster/update-import-spacing-1
Update import spacing in tests.
2 parents 0fa0e1e + e67dede commit 800334a

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/google-cloud-translate/unit_tests/test_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class TestClient(unittest.TestCase):
2020
@staticmethod
2121
def _get_target_class():
2222
from google.cloud.translate.client import Client
23+
2324
return Client
2425

2526
def _make_one(self, *args, **kw):

packages/google-cloud-translate/unit_tests/test_connection.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class TestConnection(unittest.TestCase):
2020
@staticmethod
2121
def _get_target_class():
2222
from google.cloud.translate.connection import Connection
23+
2324
return Connection
2425

2526
def _make_one(self, *args, **kw):
@@ -39,6 +40,7 @@ def test_build_api_url_no_extra_query_params(self):
3940
def test_build_api_url_w_extra_query_params(self):
4041
from six.moves.urllib.parse import parse_qsl
4142
from six.moves.urllib.parse import urlsplit
43+
4244
conn = self._make_one()
4345
query_params = [('q', 'val1'), ('q', 'val2')]
4446
uri = conn.build_api_url('/foo', query_params=query_params)

0 commit comments

Comments
 (0)