From f9eb4ffee29496425714fe3dc07cc5a5f8d0da9a Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 6 Feb 2025 09:51:38 -0800 Subject: [PATCH] style: Remove trailing whitespace in exceptions.py --- aider/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/exceptions.py b/aider/exceptions.py index 04f91dd46..8a19d32b1 100644 --- a/aider/exceptions.py +++ b/aider/exceptions.py @@ -64,7 +64,7 @@ class LiteLLMExceptions: if var.endswith("Error"): if var not in self.exception_info: raise ValueError(f"{var} is in litellm but not in aider's exceptions list") - + ex = getattr(litellm, var) dump(var, ex) self.exceptions[ex] = self.exception_info[var]