Skip to content

Commit a01708c

Browse files
committed
Fix CI
1 parent 8549e0f commit a01708c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

pyiceberg/table/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -989,10 +989,9 @@ def commit_transaction(self) -> Table:
989989
The table with the updates applied.
990990
"""
991991
if len(self._updates) > 0:
992-
self._requirements += (AssertCreate(),)
993992
self._table._do_commit( # pylint: disable=W0212
994993
updates=self._updates,
995-
requirements=self._requirements,
994+
requirements=(AssertCreate(),),
996995
)
997996

998997
self._updates = ()

0 commit comments

Comments
 (0)