Skip to content

Commit 0031dc3

Browse files
author
Joel Collins
committed
Fixed ActionKilledException in docstrings
1 parent 4e103eb commit 0031dc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/labthings/actions/thread.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def _is_thread_proc_running(self):
274274
def terminate(self, exception=ActionKilledException):
275275
"""
276276
277-
:param exception: (Default value = TaskKillException)
277+
:param exception: (Default value = ActionKilledException)
278278
:raises which: should cause the thread to exit silently
279279
280280
"""
@@ -306,7 +306,7 @@ def stop(self, timeout=None, exception=ActionKilledException):
306306
307307
:param timeout: Time to wait before killing thread forecefully. Defaults to ``self.default_stop_timeout``
308308
:type timeout: int
309-
:param exception: (Default value = TaskKillException)
309+
:param exception: (Default value = ActionKilledException)
310310
311311
"""
312312
if timeout is None:

0 commit comments

Comments
 (0)