Skip to content

Commit 2254703

Browse files
committed
reformat
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 702893d commit 2254703

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/test_model_tool_repository.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,9 @@ def test_assign_service(self) -> None:
8282

8383
def test_invalid_tool_repo_properties(self) -> None:
8484
with self.assertRaises(MutuallyExclusivePropertiesException):
85-
tr = ToolsRepository(components=[Component(name='test-component')], # pylint: disable=unused-variable # noqa: disable=E841
86-
services=[Service(name='test-service')], tools=[Tool()])
85+
ToolsRepository(
86+
components=[Component(name='test-component')],
87+
services=[Service(name='test-service')], tools=[Tool()])
8788

8889
def test_assign_component_with_existing_tool(self) -> None:
8990
tr = ToolsRepository(tools=[Tool()])

0 commit comments

Comments
 (0)