Skip to content

Commit

Permalink
More lint fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Apr 26, 2020
1 parent 7fae57d commit 1843e46
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion opentelemetry-auto-instrumentation/tests/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ class TestExecl(TestCase):
)
@patch("opentelemetry.auto_instrumentation.auto_instrumentation.which")
@patch("opentelemetry.auto_instrumentation.auto_instrumentation.execl")
def test_execl(self, mock_execl, mock_which):
def test_execl(
self, mock_execl, mock_which
): # pylint: disable=no-self-use
mock_which.configure_mock(**{"return_value": "python"})

auto_instrumentation.run()
Expand Down

0 comments on commit 1843e46

Please sign in to comment.