Skip to content

Commit

Permalink
Handle TypeError coming from git ops
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Sep 22, 2024
1 parent 739bd07 commit 7f15683
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aider/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from .dump import dump # noqa: F401

ANY_GIT_ERROR = (git.exc.ODBError, git.exc.GitError, OSError, IndexError, BufferError)
ANY_GIT_ERROR = (git.exc.ODBError, git.exc.GitError, OSError, IndexError, BufferError, TypeError)


class GitRepo:
Expand Down

0 comments on commit 7f15683

Please sign in to comment.