From c54de6bddbdc727a738f7cb5a4bad1fbfc11115c Mon Sep 17 00:00:00 2001 From: spielman Date: Mon, 14 Jul 2025 13:31:35 -0400 Subject: [PATCH] Fixed error in comment that gave the warning: ``` .../labscript/labscript/utils.py:176: SyntaxWarning: invalid escape sequence '\*' """Returns max of the arguments or zero if sequence is empty. ``` --- labscript/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labscript/utils.py b/labscript/utils.py index 39372d9..ce5751f 100644 --- a/labscript/utils.py +++ b/labscript/utils.py @@ -183,7 +183,7 @@ def max_or_zero(*args, **kwargs): **kwargs: Passed to `max()`. Returns: - : Max of \*args. + : Max of *args. """ if not args: return 0