Skip to content

Commit 3d8c120

Browse files
committed
Fix lint again
1 parent 8fb7894 commit 3d8c120

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

opentelemetry-instrumentation/tests/auto_instrumentation/test_sitecustomize.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,23 @@ def tearDownClass(cls):
2424
def test_unset(self):
2525
if environ.get("PYTHONPATH"):
2626
del environ["PYTHONPATH"] # enforce remove key/value from environ
27-
from opentelemetry.instrumentation.auto_instrumentation import (
27+
from opentelemetry.instrumentation.auto_instrumentation import ( # noqa
2828
sitecustomize,
2929
)
3030

3131
self.assertEqual(environ.get("PYTHONPATH"), None)
3232

3333
@patch.dict("os.environ", {"PYTHONPATH": ""})
3434
def test_empty(self):
35-
from opentelemetry.instrumentation.auto_instrumentation import (
35+
from opentelemetry.instrumentation.auto_instrumentation import ( # noqa
3636
sitecustomize,
3737
)
3838

3939
self.assertEqual(environ["PYTHONPATH"], "")
4040

4141
@patch.dict("os.environ", {"PYTHONPATH": "abc"})
4242
def test_set(self):
43-
from opentelemetry.instrumentation.auto_instrumentation import (
43+
from opentelemetry.instrumentation.auto_instrumentation import ( # noqa
4444
sitecustomize,
4545
)
4646

0 commit comments

Comments
 (0)