Skip to content

Commit 74358e4

Browse files
simarkclaude
andcommitted
Fix BLK100: Apply Black formatting
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 514c95a commit 74358e4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

alembic/versions/9169a7c5bda3_add_skus_table.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,9 @@ def upgrade() -> None:
137137
# Build an in-memory sku code -> sku index map, to speed up lookups lower
138138
# (avoid doing millions of SQL queries when migrating the samples).
139139
sku_code_to_index = {}
140-
for index, code, _formatted_code, _product_index in db.execute(sa.select(skus_table)):
140+
for index, code, _formatted_code, _product_index in db.execute(
141+
sa.select(skus_table)
142+
):
141143
sku_code_to_index[code] = index
142144

143145
print(">>> Dropping products_static.sku column")

0 commit comments

Comments
 (0)