mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-21 12:55:00 +00:00
style: Fix F841 unused variable in tests
This commit is contained in:
parent
c147571b18
commit
0af5563e77
1 changed files with 2 additions and 2 deletions
|
@ -2107,7 +2107,7 @@ class TestCommands(TestCase):
|
|||
)
|
||||
|
||||
def test_reset_after_coder_clone_preserves_original_read_only_files(self):
|
||||
with GitTemporaryDirectory() as repo_dir_path:
|
||||
with GitTemporaryDirectory() as _:
|
||||
repo_dir = str(".")
|
||||
io = InputOutput(pretty=False, fancy_input=False, yes=True)
|
||||
|
||||
|
@ -2156,7 +2156,7 @@ class TestCommands(TestCase):
|
|||
self.assertEqual(len(new_coder.cur_messages), 0)
|
||||
|
||||
def test_drop_bare_after_coder_clone_preserves_original_read_only_files(self):
|
||||
with GitTemporaryDirectory() as repo_dir_path:
|
||||
with GitTemporaryDirectory() as _:
|
||||
repo_dir = str(".")
|
||||
io = InputOutput(pretty=False, fancy_input=False, yes=True)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue