Skip to content

Commit 926bd01

Browse files
committed
chore: constructor
1 parent b938581 commit 926bd01

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ibis/formats/pyarrow.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,9 @@ class PyArrowDatasetProxy(TableProxy[V]):
358358
__slots__ = ("obj",)
359359
obj: V
360360

361+
def __init__(self, obj: V) -> None:
362+
self.obj = obj
363+
361364
# pyarrow datasets are hashable, so we override the hash from TableProxy
362365
def __hash__(self):
363366
return hash(self.obj)

0 commit comments

Comments
 (0)