Skip to content

Commit 641cdbe

Browse files
joshuahlangJoshua Lang
authored andcommitted
Fix lint issues
1 parent 76600a2 commit 641cdbe

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ext/opentelemetry-ext-aiohttp-client/tests/test_aiohttp_client_integration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def assert_spans(self, spans):
4040
(
4141
span.name,
4242
(span.status.canonical_code, span.status.description),
43-
dict(span.attributes)
43+
dict(span.attributes),
4444
)
4545
for span in self.memory_exporter.get_finished_spans()
4646
],
@@ -73,6 +73,7 @@ def _http_request(
7373
**kwargs
7474
) -> typing.Tuple[str, int]:
7575
"""Helper to start an aiohttp test server and send an actual HTTP request to it."""
76+
7677
async def do_request():
7778
async def default_handler(unused_request):
7879
return aiohttp.web.Response(status=int(status_code))

0 commit comments

Comments
 (0)