style: fix linting error by adding newline before error handling

This commit is contained in:
Paul Gauthier (aider) 2024-12-01 09:40:25 -08:00
parent ad186701d3
commit f02dca2dd8

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 ""