Skip to content

Commit

Permalink
Fix read for on-demand feature groups
Browse files Browse the repository at this point in the history
  • Loading branch information
SirOibaf committed Nov 18, 2020
1 parent a24a06e commit 1e2b5c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/hsfs/on_demand_feature_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def read(self, dataframe_type="default"):
self._name, self._feature_store_name
),
)
return self.select_all().read(dataframe_type)
return self.select_all().read(dataframe_type=dataframe_type)

def show(self, n):
"""Show the first n rows of the feature group."""
Expand Down

0 comments on commit 1e2b5c1

Please sign in to comment.