From 3c099465da6099e7106b811fdea2094f12b4214c Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 7 Jan 2025 09:50:28 -0800 Subject: [PATCH] refactor: Add AssertionError to ANY_GIT_ERROR tuple --- aider/repo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/repo.py b/aider/repo.py index 8a76ce6de..ccafd629b 100644 --- a/aider/repo.py +++ b/aider/repo.py @@ -27,6 +27,7 @@ ANY_GIT_ERROR += [ TypeError, ValueError, AttributeError, + AssertionError, ] ANY_GIT_ERROR = tuple(ANY_GIT_ERROR)