Skip to content

Commit d43ae32

Browse files
committed
fix style
1 parent 38f62d9 commit d43ae32

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed

logging/google/cloud/logging/handlers/app_engine.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,12 @@ class AppEngineHandler(CloudLoggingHandler):
4040
:param client: the authenticated Google Cloud Logging client for this
4141
handler to use
4242
43-
:type name: str
44-
:param name: the name of the custom log in Stackdriver Logging. Defaults
45-
to 'python'. The name of the Python logger will be represented
46-
in the ``python_logger`` field.
47-
4843
:type transport: type
4944
:param transport: Class for creating new transport objects. It should
5045
extend from the base :class:`.Transport` type and
5146
implement :meth`.Transport.send`. Defaults to
5247
:class:`.BackgroundThreadTransport`. The other
5348
option is :class:`.SyncTransport`.
54-
55-
:type resource: :class:`~google.cloud.logging.resource.Resource`
56-
:param resource: Monitored resource of the entry, defaults
57-
to the global resource type.
5849
"""
5950

6051
DEFAULT_LOGGER_NAME = 'app'

logging/google/cloud/logging/handlers/transports/sync.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"""
1919

2020
from google.cloud.logging.handlers.transports.base import Transport
21-
from google.cloud.logging.resource import Resource
2221

2322

2423
class SyncTransport(Transport):

logging/tests/unit/handlers/test_app_engine.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818

1919
class TestAppEngineHandlerHandler(unittest.TestCase):
20-
2120
PROJECT = 'PROJECT'
2221

2322
def _get_target_class(self):

0 commit comments

Comments
 (0)