File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
opentelemetry-instrumentation/tests/auto_instrumentation Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments