Skip to content

Commit 319614e

Browse files
committed
style: fix formatting
1 parent f07d811 commit 319614e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/integration/test_adk_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def test_agent_with_mcp_integration(self, mock_get_toolsets, mock_toolset_class)
5252
mock_get_toolsets.return_value = [mock_toolset]
5353

5454
with tempfile.TemporaryDirectory() as tmpdir:
55-
agent = create_agent(working_dir=tmpdir) # noqa: F841
55+
agent = create_agent(working_dir=tmpdir) # noqa: F841
5656

5757
# Verify get_mcp_toolsets was called
5858
mock_get_toolsets.assert_called_once()

tests/integration/test_mcp_integration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def test_filesystem_toolset_with_read_only_filter(self, mock_toolset_class):
2424
mock_toolset = Mock()
2525
mock_toolset_class.return_value = mock_toolset
2626

27-
toolset = get_filesystem_toolset("/tmp") # noqa: F841
27+
toolset = get_filesystem_toolset("/tmp") # noqa: F841
2828

2929
mock_toolset_class.assert_called_once()
3030
call_kwargs = mock_toolset_class.call_args[1]
@@ -36,7 +36,7 @@ def test_fetch_toolset_configuration(self, mock_toolset_class):
3636
mock_toolset = Mock()
3737
mock_toolset_class.return_value = mock_toolset
3838

39-
toolset = get_fetch_toolset() # noqa: F841
39+
toolset = get_fetch_toolset() # noqa: F841
4040

4141
mock_toolset_class.assert_called_once()
4242

@@ -46,7 +46,7 @@ def test_claude_scientific_skills_sse_connection(self, mock_toolset_class):
4646
mock_toolset = Mock()
4747
mock_toolset_class.return_value = mock_toolset
4848

49-
toolset = get_claude_scientific_skills_toolset() # noqa: F841
49+
toolset = get_claude_scientific_skills_toolset() # noqa: F841
5050

5151
mock_toolset_class.assert_called_once()
5252
# Verify SSE connection params were created

0 commit comments

Comments
 (0)