From c6e158071ac849a35203fa261f50717587f1db59 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 11 Aug 2025 21:47:11 -0700 Subject: [PATCH] Ran black --- tests/test_plugins.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_plugins.py b/tests/test_plugins.py index b89e0f2..5220392 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -779,7 +779,10 @@ def test_register_toolbox(tmpdir, logs_db): ["-c", "list them again"], ) assert result5.exit_code == 1 - assert "Error: Tool(s) Filesystem_list_files not found. Available tools:" in result5.output + assert ( + "Error: Tool(s) Filesystem_list_files not found. Available tools:" + in result5.output + ) # Test the logging worked rows = list(logs_db.query(TOOL_RESULTS_SQL))