Fix incorrect docstring in automation trace code (#61168)
This commit is contained in:
parent
200a5c7e05
commit
5256e26b6a
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ def script_execution_set(reason: str) -> None:
|
||||||
|
|
||||||
|
|
||||||
def script_execution_get() -> str | None:
|
def script_execution_get() -> str | None:
|
||||||
"""Return the current trace."""
|
"""Return the stop reason."""
|
||||||
if (data := script_execution_cv.get()) is None:
|
if (data := script_execution_cv.get()) is None:
|
||||||
return None
|
return None
|
||||||
return data.script_execution
|
return data.script_execution
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue