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: