mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-08-17 15:58:25 +00:00
style:fmt
This commit is contained in:
parent
c13d89fa22
commit
d201ea2949
@ -118,7 +118,13 @@ async def db_connect_delete(db_name: str = None):
|
||||
|
||||
@router.get("/v1/chat/db/support/type", response_model=Result[DbTypeInfo])
|
||||
async def db_support_types():
|
||||
support_types = [DBType.Mysql, DBType.MSSQL, DBType.DuckDb, DBType.SQLite, DBType.Clickhouse]
|
||||
support_types = [
|
||||
DBType.Mysql,
|
||||
DBType.MSSQL,
|
||||
DBType.DuckDb,
|
||||
DBType.SQLite,
|
||||
DBType.Clickhouse,
|
||||
]
|
||||
db_type_infos = []
|
||||
for type in support_types:
|
||||
db_type_infos.append(
|
||||
|
Loading…
Reference in New Issue
Block a user