浏览代码

新增-rematch task

luojunhui 6 月之前
父节点
当前提交
be5ae9e232
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      applications/db/__init__.py

+ 1 - 1
applications/db/__init__.py

@@ -60,7 +60,7 @@ class AsyncMySQLClient(object):
             async with conn.cursor(cursor_type) as cursor:
                 await cursor.execute(sql)
                 result = await cursor.fetchall()
-            return result
+                return result
 
     async def async_insert(self, sql, params):
         """