Skip to content

Commit 764bedb

Browse files
matrixiseclaude
andcommitted
style: Apply ruff formatting to migration file
- Update quote style to use double quotes consistently Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent 4f2d28a commit 764bedb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonie/core/migrations/0010_remove_speakers_tables.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ def drop_speakers_tables(apps, schema_editor):
1515
# Instead, we use raw SQL to drop the tables
1616

1717
# Determine if we're using PostgreSQL or SQLite
18-
is_postgres = schema_editor.connection.vendor == 'postgresql'
19-
cascade = ' CASCADE' if is_postgres else ''
18+
is_postgres = schema_editor.connection.vendor == "postgresql"
19+
cascade = " CASCADE" if is_postgres else ""
2020

2121
with schema_editor.connection.cursor() as cursor:
2222
# For SQLite, we need to disable foreign keys temporarily

0 commit comments

Comments
 (0)