Skip to content

Commit 6b8fc5f

Browse files
committed
added __all__ variable for the new namespaces
1 parent 583a0e8 commit 6b8fc5f

File tree

6 files changed

+49
-5
lines changed

6 files changed

+49
-5
lines changed

icechunk-python/python/icechunk/config.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,14 @@
66
RepositoryConfig,
77
initialize_logs,
88
set_logs_filter
9-
)
9+
)
10+
11+
__all__ = [
12+
"CachingConfig",
13+
"CompressionConfig",
14+
"CompressionAlgorithm",
15+
"ObjectStoreConfig",
16+
"RepositoryConfig",
17+
"initialize_logs",
18+
"set_logs_filter"
19+
]

icechunk-python/python/icechunk/conflict.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,13 @@
55
ConflictSolver,
66
ConflictType,
77
VersionSelection
8-
)
8+
)
9+
10+
__all__ = [
11+
"BasicConflictSolver",
12+
"Conflict",
13+
"ConflictDetector",
14+
"ConflictSolver",
15+
"ConflictType",
16+
"VersionSelection"
17+
]

icechunk-python/python/icechunk/exceptions.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,8 @@
44
RebaseFailedError
55
)
66

7+
__all__ = [
8+
"ConflictError",
9+
"IcechunkError",
10+
"RebaseFailedError"
11+
]

icechunk-python/python/icechunk/manifests.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,14 @@
66
ManifestSplitCondition,
77
ManifestSplitDimCondition,
88
ManifestSplittingConfig,
9-
)
9+
)
10+
11+
__all__ = [
12+
"ManifestConfig",
13+
"ManifestFileInfo",
14+
"ManifestPreloadCondition",
15+
"ManifestPreloadConfig",
16+
"ManifestSplitCondition",
17+
"ManifestSplitDimCondition",
18+
"ManifestSplittingConfig"
19+
]
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
from icechunk._icechunk_python import (
22
SnapshotInfo,
33
Diff
4-
)
4+
)
5+
6+
__all__ = [
7+
"SnapshotInfo",
8+
"Diff"
9+
]
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
from icechunk._icechunk_python import (
22
VirtualChunkContainer,
33
VirtualChunkSpec
4-
)
4+
)
5+
6+
__all__ = [
7+
"VirtualChunkContainer",
8+
"VirtualChunkSpec"
9+
]

0 commit comments

Comments
 (0)