From 0cfc111718c88d82bfa8b20e6c9f90760b031560 Mon Sep 17 00:00:00 2001 From: Franklin-F Date: Sun, 1 Jun 2025 18:48:48 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B7=BB=E5=8A=A0tuple=5F=E5=AF=BC?= =?UTF-8?q?=E5=85=A5=E4=BB=A5=E6=94=AF=E6=8C=81=E5=85=83=E7=BB=84=E6=93=8D?= =?UTF-8?q?=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DB.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DB.py b/DB.py index c4847f7..1dc90d8 100644 --- a/DB.py +++ b/DB.py @@ -7,7 +7,7 @@ import time, copy, threading from typing import List, Dict from sqlalchemy import ( create_engine, MetaData, Table, Column, - BigInteger, Integer, String, Text, DateTime + BigInteger, Integer, String, Text, DateTime, tuple_ ) from sqlalchemy.dialects.mysql import insert as mysql_insert from logger import logger