mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-21 12:55:00 +00:00
style: fix line length in test_commands.py
This commit is contained in:
parent
f800ce1e5a
commit
26a85c2047
1 changed files with 3 additions and 1 deletions
|
@ -764,7 +764,9 @@ class TestCommands(TestCase):
|
|||
read_only_files = {coder.get_rel_fname(f) for f in coder.abs_read_only_fnames}
|
||||
|
||||
self.assertEqual(added_files, {str(Path("file1.txt"))})
|
||||
self.assertTrue(any(os.path.samefile(external_file_path, f) for f in read_only_files))
|
||||
self.assertTrue(
|
||||
any(os.path.samefile(external_file_path, f) for f in read_only_files)
|
||||
)
|
||||
|
||||
# Clean up
|
||||
Path(session_file).unlink()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue