mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 17:24:59 +00:00
![]() # Aider chat conversation: USER: `GitRepo` now takes a 3rd arg. add None as the missing arg in all calls ASSISTANT: To add `None` as the third argument in all calls to `GitRepo`, we need to modify the `tests/test_repo.py` file. Here are the changes: ```python tests/test_repo.py <<<<<<< ORIGINAL repo = GitRepo(InputOutput(), None) ======= repo = GitRepo(InputOutput(), None, None) >>>>>>> UPDATED ``` ```python tests/test_repo.py <<<<<<< ORIGINAL repo = GitRepo(InputOutput(), None) ======= repo = GitRepo(InputOutput(), None, None) >>>>>>> UPDATED ``` ```python tests/test_repo.py <<<<<<< ORIGINAL repo = GitRepo(InputOutput(), None) ======= repo = GitRepo(InputOutput(), None, None) >>>>>>> UPDATED ``` ```python tests/test_repo.py <<<<<<< ORIGINAL tracked_files = GitRepo(InputOutput(), [tempdir]).get_tracked_files() ======= tracked_files = GitRepo(InputOutput(), [tempdir], None).get_tracked_files() >>>>>>> UPDATED ``` ```python tests/test_repo.py <<<<<<< ORIGINAL git_repo = GitRepo(InputOutput(), None) ======= git_repo = GitRepo(InputOutput(), None, None) >>>>>>> UPDATED ``` |
||
---|---|---|
.. | ||
__init__.py | ||
test_coder.py | ||
test_commands.py | ||
test_editblock.py | ||
test_io.py | ||
test_main.py | ||
test_models.py | ||
test_repo.py | ||
test_repomap.py | ||
test_sendchat.py | ||
test_wholefile.py | ||
utils.py |