Skip to content

Commit 86aac0f

Browse files
authored
Merge pull request #3039 from daspecster/formatting-style-part-1
Spanner, BigQuery, Core, Error Reporting, Logging formatting style updates.
2 parents 2e8a1bd + 7aa67ad commit 86aac0f

File tree

5 files changed

+7
-0
lines changed

5 files changed

+7
-0
lines changed

packages/google-cloud-logging/unit_tests/handlers/test_handlers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class TestCloudLoggingHandler(unittest.TestCase):
2323
@staticmethod
2424
def _get_target_class():
2525
from google.cloud.logging.handlers.handlers import CloudLoggingHandler
26+
2627
return CloudLoggingHandler
2728

2829
def _make_one(self, *args, **kw):
@@ -49,6 +50,7 @@ class TestSetupLogging(unittest.TestCase):
4950

5051
def _call_fut(self, handler, excludes=None):
5152
from google.cloud.logging.handlers.handlers import setup_logging
53+
5254
if excludes:
5355
return setup_logging(handler, excluded_loggers=excludes)
5456
else:

packages/google-cloud-logging/unit_tests/handlers/transports/test_background_thread.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class TestBackgroundThreadHandler(unittest.TestCase):
2525
def _get_target_class():
2626
from google.cloud.logging.handlers.transports import (
2727
BackgroundThreadTransport)
28+
2829
return BackgroundThreadTransport
2930

3031
def _make_one(self, *args, **kw):
@@ -62,6 +63,7 @@ class TestWorker(unittest.TestCase):
6263
@staticmethod
6364
def _get_target_class():
6465
from google.cloud.logging.handlers.transports import background_thread
66+
6567
return background_thread._Worker
6668

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

packages/google-cloud-logging/unit_tests/handlers/transports/test_base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class TestBaseHandler(unittest.TestCase):
2222
@staticmethod
2323
def _get_target_class():
2424
from google.cloud.logging.handlers.transports import Transport
25+
2526
return Transport
2627

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

packages/google-cloud-logging/unit_tests/handlers/transports/test_sync.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class TestSyncHandler(unittest.TestCase):
2323
@staticmethod
2424
def _get_target_class():
2525
from google.cloud.logging.handlers.transports import SyncTransport
26+
2627
return SyncTransport
2728

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

packages/google-cloud-logging/unit_tests/test__gax.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ class Test_LoggingAPI(_Base, unittest.TestCase):
5353
@staticmethod
5454
def _get_target_class():
5555
from google.cloud.logging._gax import _LoggingAPI
56+
5657
return _LoggingAPI
5758

5859
def test_ctor(self):

0 commit comments

Comments
 (0)