Skip to content

Commit 49f4963

Browse files
author
Alexey Tsitkin
committed
minor py 2 compatibility fix
1 parent 55e77fc commit 49f4963

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auto_tasks/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _auto_task_wrapper_invoker(*args, **kwargs):
3333
class_.__module__,
3434
class_.__name__,
3535
func_name,
36-
*args, **kwargs, queue_name=queue_name, max_retries=max_retries
36+
*args, queue_name=queue_name, max_retries=max_retries, **kwargs
3737
)
3838

3939
setattr(instance, func_name, _auto_task_wrapper_invoker)

0 commit comments

Comments
 (0)