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
```
This commit is contained in:
Paul Gauthier 2023-05-17 18:25:03 -07:00
parent 9a413d351d
commit 6e83df4c8d

View file

@ -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