Skip to content

Commit 88f4ff9

Browse files
committed
lint
1 parent 478b294 commit 88f4ff9

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

agixt/DB.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4176,7 +4176,14 @@ def migrate_conversation_table():
41764176
columns_to_add = [
41774177
("pin_order", "INTEGER"),
41784178
("category", "VARCHAR"),
4179-
("locked", "BOOLEAN DEFAULT 0" if DATABASE_TYPE == "sqlite" else "BOOLEAN DEFAULT FALSE"),
4179+
(
4180+
"locked",
4181+
(
4182+
"BOOLEAN DEFAULT 0"
4183+
if DATABASE_TYPE == "sqlite"
4184+
else "BOOLEAN DEFAULT FALSE"
4185+
),
4186+
),
41804187
]
41814188

41824189
if DATABASE_TYPE == "sqlite":

0 commit comments

Comments
 (0)