We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c458f2 commit a08eb6bCopy full SHA for a08eb6b
1 file changed
pyiceberg/table/update/snapshot.py
@@ -84,7 +84,11 @@
84
from pyiceberg.utils.concurrent import ExecutorFactory
85
from pyiceberg.utils.properties import property_as_bool, property_as_int
86
87
-from pyiceberg.table.metadata import Snapshot, TableMetadata
+if TYPE_CHECKING:
88
+ from pyiceberg.table import Transaction
89
+
90
+from pyiceberg.table.metadata import TableMetadata
91
+from pyiceberg.table.snapshots import Snapshot
92
93
94
def _new_manifest_file_name(num: int, commit_uuid: uuid.UUID) -> str:
0 commit comments