chore: linting

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-01-01 22:56:37 -08:00
parent eaa21c7150
commit 2832d57bda
60 changed files with 176 additions and 179 deletions

View file

@ -26,10 +26,16 @@ def upgrade() -> None:
connection.execute(text("COMMIT"))
# Add to documenttype enum (must be outside transaction)
connection.execute(text("ALTER TYPE documenttype ADD VALUE IF NOT EXISTS 'CIRCLEBACK'"))
connection.execute(
text("ALTER TYPE documenttype ADD VALUE IF NOT EXISTS 'CIRCLEBACK'")
)
# Add to searchsourceconnectortype enum
connection.execute(text("ALTER TYPE searchsourceconnectortype ADD VALUE IF NOT EXISTS 'CIRCLEBACK_CONNECTOR'"))
connection.execute(
text(
"ALTER TYPE searchsourceconnectortype ADD VALUE IF NOT EXISTS 'CIRCLEBACK_CONNECTOR'"
)
)
def downgrade() -> None: