Skip to content

Commit 76bfa5a

Browse files
committed
Add lint fixes
1 parent ebe0ec0 commit 76bfa5a

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

opentelemetry-auto-instrumentation/tests/test_instrumentor.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,7 @@ def test_run_non_empty(
7373
auto_instrumentation.run()
7474
self.assertEqual(
7575
environ["PYTHONPATH"],
76-
pathsep.join(
77-
[self.auto_instrumentation_path, "abc"]
78-
),
76+
pathsep.join([self.auto_instrumentation_path, "abc"]),
7977
)
8078

8179
@patch.dict(
@@ -91,7 +89,5 @@ def test_run_after_path(
9189
auto_instrumentation.run()
9290
self.assertEqual(
9391
environ["PYTHONPATH"],
94-
pathsep.join(
95-
[self.auto_instrumentation_path, "abc"]
96-
),
92+
pathsep.join([self.auto_instrumentation_path, "abc"]),
9793
)

0 commit comments

Comments
 (0)