Browse Source

新增-rematch task

luojunhui 8 months ago
parent
commit
be5ae9e232
1 changed files with 1 additions and 1 deletions
  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):
         """