Skip to content

Commit 265461a

Browse files
author
Andres Beck-Ruiz
committed
fixing formatting errors
1 parent bd8581b commit 265461a

File tree

5 files changed

+3
-5
lines changed

5 files changed

+3
-5
lines changed

instrumentation/opentelemetry-instrumentation-aiopg/src/opentelemetry/instrumentation/aiopg/aiopg_integration.py

-1
Original file line numberDiff line numberDiff line change
@@ -155,4 +155,3 @@ async def callproc(self, *args, **kwargs):
155155
return result
156156

157157
return AsyncCursorTracerProxy(cursor, *args, **kwargs)
158-

instrumentation/opentelemetry-instrumentation-falcon/src/opentelemetry/instrumentation/falcon/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def response_hook(span, req, resp):
132132
class FalconInstrumentor(BaseInstrumentor):
133133
# pylint: disable=protected-access,attribute-defined-outside-init
134134
"""An instrumentor for falcon.API
135-
135+
136136
See `BaseInstrumentor`
137137
"""
138138

instrumentation/opentelemetry-instrumentation-grpc/tests/test_server_interceptor.py

-1
Original file line numberDiff line numberDiff line change
@@ -664,4 +664,3 @@ def countdown_latch():
664664
cv.release()
665665

666666
return countdown_latch
667-

instrumentation/opentelemetry-instrumentation-tornado/src/opentelemetry/instrumentation/tornado/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def _instrument(self, **kwargs):
136136
However, we cannot just patch RequestHandler's prepare method because it is supposed to be overwridden
137137
by sub-classes and since the parent prepare method does not do anything special, sub-classes don't
138138
have to call super() when overriding the method.
139-
139+
140140
In order to work around this, we patch the __init__ method of RequestHandler and then dynamically patch
141141
the prepare, on_finish and log_exception methods of the derived classes _only_ the first time we see them.
142142
Note that the patch does not apply on every single __init__ call, only the first one for the enture

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -447,4 +447,4 @@ deps =
447447

448448
commands =
449449
{toxinidir}/scripts/generate_setup.py
450-
{toxinidir}/scripts/generate_instrumentation_bootstrap.py
450+
{toxinidir}/scripts/generate_instrumentation_bootstrap.py

0 commit comments

Comments
 (0)