aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/autogpt/core/runner/client_lib/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'autogpts/autogpt/autogpt/core/runner/client_lib/utils.py')
-rw-r--r--autogpts/autogpt/autogpt/core/runner/client_lib/utils.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/autogpts/autogpt/autogpt/core/runner/client_lib/utils.py b/autogpts/autogpt/autogpt/core/runner/client_lib/utils.py
index ebb03edb3..887683df7 100644
--- a/autogpts/autogpt/autogpt/core/runner/client_lib/utils.py
+++ b/autogpts/autogpt/autogpt/core/runner/client_lib/utils.py
@@ -17,9 +17,10 @@ def handle_exceptions(
This is intended to be used as a wrapper for the main function of a CLI application.
It will catch all errors and drop a user into a debugger if the error is not a
- KeyboardInterrupt. If the error is a KeyboardInterrupt, it will raise the error.
- If the error is not a KeyboardInterrupt, it will log the error and drop a user into a
- debugger if with_debugger is True. If with_debugger is False, it will raise the error.
+ `KeyboardInterrupt`. If the error is a `KeyboardInterrupt`, it will raise the error.
+ If the error is not a `KeyboardInterrupt`, it will log the error and drop a user
+ into a debugger if `with_debugger` is `True`.
+ If `with_debugger` is `False`, it will raise the error.
Parameters
----------