From 081e49f3a53f7a4743ade0685f826db61ab2f61f Mon Sep 17 00:00:00 2001 From: Siarhei Siniak Date: Sat, 6 Jul 2024 21:06:24 +0300 Subject: [PATCH] [~] Refactor --- python/tasks/tiktok/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/tasks/tiktok/utils.py b/python/tasks/tiktok/utils.py index 2892a36..612e7fd 100644 --- a/python/tasks/tiktok/utils.py +++ b/python/tasks/tiktok/utils.py @@ -18,7 +18,6 @@ def shared_task(*args: Any, **kwargs: Any) -> Any: class Task(celery.app.task.Task): def __call__(self, *args, **kwargs) -> Any: res = super().__call__(*args, **kwargs) - print([res, inspect.isawaitable(res)]) if inspect.isawaitable(res): return asyncio.run(res) else: