Skip to content

Commit af4957e

Browse files
committed
Fix code style formatting
1 parent 48a5eeb commit af4957e

File tree

1 file changed

+3
-1
lines changed
  • instrumentation/opentelemetry-instrumentation-redis/src/opentelemetry/instrumentation/redis

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,9 @@ def _traced_execute_pipeline(func, instance, args, kwargs):
173173
)
174174

175175
cmds = [
176-
_format_command_args(c.args if hasattr(c, "args") else c[0], sanitize_query)
176+
_format_command_args(
177+
c.args if hasattr(c, "args") else c[0], sanitize_query
178+
)
177179
for c in command_stack
178180
]
179181
resource = "\n".join(cmds)

0 commit comments

Comments
 (0)