Skip to content

Commit 8a44ec6

Browse files
committed
document
1 parent 0a881ff commit 8a44ec6

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pydbzengine/helper.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,4 @@ def run_engine_async(engine, timeout_sec=22, blocking=True):
5252
finally:
5353
# **Crucially important:** Cancel the alarm. This prevents the timeout
5454
# from triggering again later if the main thread continues to run.
55-
signal.alarm(0) # 0 means cancel the alarm.
56-
57-
# If the engine.run() finishes within the timeout, this point will be reached.
58-
# No explicit return is needed as the function doesn't return anything.
59-
print("Engine run completed successfully.") # Add a log message to signal success
55+
signal.alarm(0) # 0 means cancel the alarm.

0 commit comments

Comments
 (0)