From 4816796de05ef8d7de532f414aea3c78d62f60d0 Mon Sep 17 00:00:00 2001 From: Srikanth Chekuri Date: Sun, 15 Nov 2020 12:53:23 +0530 Subject: [PATCH] Lint fixes --- .../src/opentelemetry/instrumentation/asyncpg/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/instrumentation/opentelemetry-instrumentation-asyncpg/src/opentelemetry/instrumentation/asyncpg/__init__.py b/instrumentation/opentelemetry-instrumentation-asyncpg/src/opentelemetry/instrumentation/asyncpg/__init__.py index 1e14bb2dd..2ed452ebd 100644 --- a/instrumentation/opentelemetry-instrumentation-asyncpg/src/opentelemetry/instrumentation/asyncpg/__init__.py +++ b/instrumentation/opentelemetry-instrumentation-asyncpg/src/opentelemetry/instrumentation/asyncpg/__init__.py @@ -119,9 +119,7 @@ class AsyncPGInstrumentor(BaseInstrumentor): exception = None span_attributes = _hydrate_span_from_args( - instance, - args[0], - args[1:] if self.capture_parameters else None, + instance, args[0], args[1:] if self.capture_parameters else None ) name = "" if args[0]: