Skip to content

Commit c869070

Browse files
seedspiritclaude
andcommitted
style(BA-6085): apply ruff format to migration
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 62aadfe commit c869070

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

src/ai/backend/manager/models/alembic/versions/0b10b2c6a972_seed_reads_vfolder_for_custom_variant.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,14 @@
3030
def upgrade() -> None:
3131
op.execute(
3232
sa.text(
33-
"UPDATE runtime_variants "
34-
"SET reads_vfolder_config_files = true "
35-
"WHERE name = 'custom'"
33+
"UPDATE runtime_variants SET reads_vfolder_config_files = true WHERE name = 'custom'"
3634
)
3735
)
3836

3937

4038
def downgrade() -> None:
4139
op.execute(
4240
sa.text(
43-
"UPDATE runtime_variants "
44-
"SET reads_vfolder_config_files = false "
45-
"WHERE name = 'custom'"
41+
"UPDATE runtime_variants SET reads_vfolder_config_files = false WHERE name = 'custom'"
4642
)
4743
)

0 commit comments

Comments
 (0)