Skip to content

Commit c0c3d3e

Browse files
committed
Add trailing commas to urllib3 instrumentation examples
1 parent ae6e8fb commit c0c3d3e

File tree

2 files changed

+2
-2
lines changed
  • instrumentation/opentelemetry-instrumentation-urllib3

2 files changed

+2
-2
lines changed

instrumentation/opentelemetry-instrumentation-urllib3/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The hooks can be configured as follows:
7171
7272
URLLib3Instrumentor().instrument(
7373
request_hook=request_hook,
74-
response_hook=response_hook
74+
response_hook=response_hook,
7575
)
7676
7777
Exclude lists

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def response_hook(
7171
7272
URLLib3Instrumentor().instrument(
7373
request_hook=request_hook,
74-
response_hook=response_hook
74+
response_hook=response_hook,
7575
)
7676
7777
Exclude lists

0 commit comments

Comments
 (0)