From 6e83df4c8d4878328a548e889133918d76ecb519 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 17 May 2023 18:25:03 -0700 Subject: [PATCH] aider: Removed unused import of `rich.text.Text` in `aider/commands.py`. # Context: USER: aider/commands.py:2:1: F401 'rich.text.Text' imported but unused from rich.text import Text ^ ASSISTANT: I will remove the unused import from the `aider/commands.py` file. ```python aider/commands.py <<<<<<< ORIGINAL from rich.text import Text from rich.prompt import Confirm ======= from rich.prompt import Confirm >>>>>>> UPDATED ``` --- aider/commands.py | 1 - 1 file changed, 1 deletion(-) diff --git a/aider/commands.py b/aider/commands.py index 27268deb9..56f73a864 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1,5 +1,4 @@ import os -from rich.text import Text from rich.prompt import Confirm from prompt_toolkit.completion import Completion from aider import prompts