From b372fda4c058801a581a5774a1c7fe6947b149ed Mon Sep 17 00:00:00 2001 From: tcely Date: Mon, 16 Jun 2025 17:38:05 -0400 Subject: [PATCH] fixup: syntax --- tubesync/common/huey.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubesync/common/huey.py b/tubesync/common/huey.py index fd516c6d..4e2a4e79 100644 --- a/tubesync/common/huey.py +++ b/tubesync/common/huey.py @@ -1,7 +1,7 @@ from functools import wraps -def CancelExecution(*args, *, retry=None, **kwargs): +def CancelExecution(*args, retry=None, **kwargs): from huey import CancelExecution as cancel return cancel(retry, *args, **kwargs)