Skip to content

Commit 84d0971

Browse files
committed
Fixed comments
1 parent 82e5b90 commit 84d0971

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyiceberg/table/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ def append(self, df: pa.Table, snapshot_properties: Dict[str, str] = EMPTY_DICT,
988988
Args:
989989
df: The Arrow dataframe that will be appended to overwrite the table
990990
snapshot_properties: Custom properties to be added to the snapshot summary
991-
branch: Branch Reference to run the delete operation
991+
branch: Branch Reference to run the append operation
992992
"""
993993
with self.transaction() as tx:
994994
tx.append(df=df, snapshot_properties=snapshot_properties, branch=branch)
@@ -1014,7 +1014,7 @@ def overwrite(
10141014
overwrite_filter: ALWAYS_TRUE when you overwrite all the data,
10151015
or a boolean expression in case of a partial overwrite
10161016
snapshot_properties: Custom properties to be added to the snapshot summary
1017-
branch: Branch Reference to run the delete operation
1017+
branch: Branch Reference to run the overwrite operation
10181018
"""
10191019
with self.transaction() as tx:
10201020
tx.overwrite(df=df, overwrite_filter=overwrite_filter, snapshot_properties=snapshot_properties, branch=branch)

0 commit comments

Comments
 (0)