Skip to content

Commit

Permalink
fix: unwind
Browse files Browse the repository at this point in the history
  • Loading branch information
hatchet-temporary committed Dec 19, 2024
1 parent 52eb5d2 commit 31bd11b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hatchet_sdk/worker/runner/utils/error_with_traceback.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import traceback


def error_with_traceback(message: str, e: Exception) -> str:
def errorWithTraceback(message: str, e: Exception) -> str:
trace = "".join(traceback.format_exception(type(e), e, e.__traceback__))
return f"{message}\n{trace}"

0 comments on commit 31bd11b

Please sign in to comment.