larryhudson / aiderbot

AI coding assistant that can resolve issues in your GitHub repo
3 stars 0 forks source link

Fix issue #28: fix: Handle both string and tuple inputs in files_list #29

Closed larryhudson-aider-github[bot] closed 1 month ago

larryhudson-aider-github[bot] commented 1 month ago

This PR addresses the changes requested in issue #28

Thank you for adding the aider_coder.py file to the chat. Based on the content you've provided, I can see that the changes we discussed earlier have indeed been implemented in the do_coding_request function.

The function now handles both string and tuple inputs in the files_list parameter, as we can see in this part of the code:

for file in files_list:
    if isinstance(file, tuple):
        full_file_paths.append(os.path.join(root_folder_path, file[0]))
    else:
        full_file_paths.append(os.path.join(root_folder_path, file))

This implementation correctly addresses the issue we discussed earlier.

For now, the aider_coder.py file seems to be sufficient for our current discussion. However, if you have any specific questions about other parts of the code or if you want to make changes to other files, please let me know, and we can add those files to the chat as well.

Is there anything specific you'd like to discuss or modify in the aider_coder.py file or any other aspect of your project?