Skip to content

Commit 07e9f54

Browse files
committed
lint
1 parent 9a2e399 commit 07e9f54

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/test_collaborative_tool.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ async def test_func(file_path: str):
176176
"jupyter_ai_tools.utils.get_global_awareness", return_value=mock_global_awareness
177177
), patch(
178178
"jupyter_ai_tools.utils.get_file_id", side_effect=Exception("File ID error")
179-
), patch("jupyter_ai_tools.utils.get_jupyter_ydoc") as mock_ydoc:
179+
), patch(
180+
"jupyter_ai_tools.utils.get_jupyter_ydoc"
181+
) as mock_ydoc:
180182
# Function should still execute despite notebook awareness error
181183
result = await test_func("test.ipynb")
182184

@@ -320,7 +322,7 @@ async def complex_func(arg1: str, file_path: str, *args, **kwargs):
320322

321323
# Verify function executed with all parameters
322324
assert (
323-
"processed first, test.py, ('extra1', 'extra2'), {'key1': 'value1', 'key2': 'value2'}" # noqa: E501
325+
"processed first, test.py, ('extra1', 'extra2'), {'key1': 'value1', 'key2': 'value2'}" # noqa: E501
324326
in result
325327
)
326328

0 commit comments

Comments
 (0)