Skip to content

Commit 5adb926

Browse files
committed
change variable name to be more specific
1 parent 98c47ef commit 5adb926

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyiceberg/table/update/validate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from pyiceberg.typedef import Record
2626

2727
VALIDATE_DATA_FILES_EXIST_OPERATIONS: Set[Operation] = {Operation.OVERWRITE, Operation.REPLACE, Operation.DELETE}
28-
VALIDATE_ADDED_FILES_OPERATIONS: Set[Operation] = {Operation.APPEND, Operation.OVERWRITE}
28+
VALIDATE_ADDED_DATA_FILES_OPERATIONS: Set[Operation] = {Operation.APPEND, Operation.OVERWRITE}
2929

3030

3131
def validation_history(
@@ -179,7 +179,7 @@ def _added_data_files(
179179
table,
180180
parent_snapshot,
181181
starting_snapshot,
182-
VALIDATE_ADDED_FILES_OPERATIONS,
182+
VALIDATE_ADDED_DATA_FILES_OPERATIONS,
183183
ManifestContent.DATA,
184184
)
185185

0 commit comments

Comments
 (0)