Skip to content

Commit a08eb6b

Browse files
committed
Update snapshot.py
1 parent 5c458f2 commit a08eb6b

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

pyiceberg/table/update/snapshot.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,11 @@
8484
from pyiceberg.utils.concurrent import ExecutorFactory
8585
from pyiceberg.utils.properties import property_as_bool, property_as_int
8686

87-
from pyiceberg.table.metadata import Snapshot, TableMetadata
87+
if TYPE_CHECKING:
88+
from pyiceberg.table import Transaction
89+
90+
from pyiceberg.table.metadata import TableMetadata
91+
from pyiceberg.table.snapshots import Snapshot
8892

8993

9094
def _new_manifest_file_name(num: int, commit_uuid: uuid.UUID) -> str:

0 commit comments

Comments
 (0)