Skip to content

Commit d515e74

Browse files
committed
Fix name collision
1 parent b9c912d commit d515e74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyiceberg/table/update/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,8 +482,8 @@ def _(update: RemoveSnapshotsUpdate, base_metadata: TableMetadata, context: _Tab
482482
)
483483
updates = itertools.chain(remove_ref_updates, remove_statistics_updates)
484484
new_metadata = base_metadata
485-
for update in updates:
486-
new_metadata = _apply_table_update(update, new_metadata, context)
485+
for upd in updates:
486+
new_metadata = _apply_table_update(upd, new_metadata, context)
487487

488488
context.add_update(update)
489489
return new_metadata.model_copy(update={"snapshots": snapshots})

0 commit comments

Comments
 (0)