We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bb9693 commit 01f0550Copy full SHA for 01f0550
src/humanloop/cli/__main__.py
@@ -88,7 +88,10 @@ def wrapper(*args, **kwargs):
88
return wrapper
89
90
def handle_sync_errors(f: Callable) -> Callable:
91
- """Decorator for handling sync operation errors."""
+ """Decorator for handling sync operation errors.
92
+
93
+ If an error occurs in any operation that uses this decorator, it will be logged and the program will exit with a non-zero exit code.
94
+ """
95
@wraps(f)
96
def wrapper(*args, **kwargs):
97
try:
0 commit comments