Skip to content

Commit c54de6b

Browse files
author
spielman
committed
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. ```
1 parent 41d6e1c commit c54de6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labscript/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def max_or_zero(*args, **kwargs):
183183
**kwargs: Passed to `max()`.
184184
185185
Returns:
186-
: Max of \*args.
186+
: Max of *args.
187187
"""
188188
if not args:
189189
return 0

0 commit comments

Comments
 (0)