Skip to content

Commit

Permalink
put pylint right
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-schmitt committed May 24, 2024
1 parent 5d4bdf0 commit d03b91d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tracex_project/extraction/tests/test_orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,8 @@ def setUp(self): # pylint: disable=invalid-name
self.factory = RequestFactory()
self.orchestrator = Orchestrator()

self.orchestrator.get_configuration = (
lambda: MockConfiguration()
) # pylint: disable=unnecessary-lambda
# pylint: disable=unnecessary-lambda
self.orchestrator.get_configuration = lambda: MockConfiguration()

def tearDown(self): # pylint: disable=invalid-name
"""Tear down method that gets called after every test is executed."""
Expand Down

0 comments on commit d03b91d

Please sign in to comment.