From 8913eb50664d9f00627bfb6e1ac0c20865d65e07 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 17 May 2023 18:26:43 -0700 Subject: [PATCH] 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 ``` --- tests/test_main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_main.py b/tests/test_main.py index e1d56d2fb..a497c1d74 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -1,5 +1,4 @@ import os -import sys import tempfile from unittest import TestCase from aider.main import main