refactor: Add AssertionError to ANY_GIT_ERROR tuple

This commit is contained in:
Paul Gauthier 2025-01-07 09:50:28 -08:00 committed by Paul Gauthier (aider)
parent fcdb2591b6
commit 3c099465da

View file

@ -27,6 +27,7 @@ ANY_GIT_ERROR += [
TypeError, TypeError,
ValueError, ValueError,
AttributeError, AttributeError,
AssertionError,
] ]
ANY_GIT_ERROR = tuple(ANY_GIT_ERROR) ANY_GIT_ERROR = tuple(ANY_GIT_ERROR)