Skip to content

Commit 40c1a38

Browse files
committed
Make the CI happy
1 parent 09ffb38 commit 40c1a38

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pyiceberg/table/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@
122122
_FastAppendFiles,
123123
)
124124
from pyiceberg.table.update.sorting import UpdateSortOrder
125-
from pyiceberg.table.update.snapshot import ManageSnapshots, UpdateSnapshot, _FastAppendFiles
126125
from pyiceberg.table.update.spec import UpdateSpec
127126
from pyiceberg.table.update.statistics import UpdateStatistics
128127
from pyiceberg.transforms import IdentityTransform
@@ -456,7 +455,9 @@ def update_sort_order(self, case_sensitive: bool = True) -> UpdateSortOrder:
456455
case_sensitive=case_sensitive,
457456
)
458457

459-
def update_snapshot(self, snapshot_properties: Dict[str, str] = EMPTY_DICT) -> UpdateSnapshot:
458+
def update_snapshot(
459+
self, snapshot_properties: Dict[str, str] = EMPTY_DICT, branch: Optional[str] = MAIN_BRANCH
460+
) -> UpdateSnapshot:
460461
"""Create a new UpdateSnapshot to produce a new snapshot for the table.
461462
462463
Returns:

0 commit comments

Comments
 (0)