style: fix linting error by adding newline before error handling

This commit is contained in:
Paul Gauthier (aider) 2024-12-01 09:41:17 -08:00
parent a54a5ee80d
commit 1108566e99

View file

@ -479,6 +479,7 @@ class InputOutput:
return "" return ""
except Exception as err: except Exception as err:
import traceback import traceback
self.tool_error(str(err)) self.tool_error(str(err))
self.tool_error(traceback.format_exc()) self.tool_error(traceback.format_exc())
return "" return ""