mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 08:44:59 +00:00
aider: Removed unused import statement for 'sys' in tests/test_main.py.
# Context: USER: tests/test_main.py:2:1: F401 'sys' imported but unused import sys ^ ASSISTANT: To fix the unused import issue, you can remove the import statement for 'sys' in the `tests/test_main.py` file. ```python tests/test_main.py <<<<<<< ORIGINAL import sys ======= >>>>>>> UPDATED ```
This commit is contained in:
parent
943084fba2
commit
8913eb5066
1 changed files with 0 additions and 1 deletions
|
@ -1,5 +1,4 @@
|
||||||
import os
|
import os
|
||||||
import sys
|
|
||||||
import tempfile
|
import tempfile
|
||||||
from unittest import TestCase
|
from unittest import TestCase
|
||||||
from aider.main import main
|
from aider.main import main
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue