Skip to content

Commit 7ddfe90

Browse files
committed
fix(lake): do not prefix name
1 parent 77ddba6 commit 7ddfe90

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

servc/svc/com/storage/delta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
class Delta(Lake[DeltaTable]):
14-
name: str = "delta"
14+
_format: str = "delta"
1515

1616
_storageOptions: Dict[str, str] = {}
1717

servc/svc/com/storage/iceberg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
class IceBerg(Lake[Table]):
20-
name: str = "iceberg"
20+
_format: str = "iceberg"
2121

2222
# _table
2323
_catalog: Catalog

servc/svc/com/storage/lake.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ class LakeTable(TypedDict):
2828
class Lake(Generic[T], StorageComponent):
2929
name: str = "lake"
3030

31+
_format: str = "lake"
32+
3133
_type: ComponentType = ComponentType.LAKE
3234

3335
_table: LakeTable | str

0 commit comments

Comments
 (0)