From aef3863c4a1448d3a4ffb03415a46d794ec2278a Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 8 May 2025 09:36:33 -0700 Subject: [PATCH] fix: Remove unused import in test_io.py --- tests/basic/test_io.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/basic/test_io.py b/tests/basic/test_io.py index e831fef10..80cf50cb7 100644 --- a/tests/basic/test_io.py +++ b/tests/basic/test_io.py @@ -452,8 +452,6 @@ class TestInputOutputMultilineMode(unittest.TestCase): """Test that tool_output correctly handles hex colors without # prefix""" from unittest.mock import patch - from rich.text import Text - # Create IO with hex color without # for tool_output_color io = InputOutput(tool_output_color="FFA500", pretty=True)