Skip to content

Commit

Permalink
fix(datasets): use kwarg for Ibis read_* methods
Browse files Browse the repository at this point in the history
Signed-off-by: Deepyaman Datta <[email protected]>
  • Loading branch information
deepyaman authored Feb 7, 2025
1 parent 1a5e0fa commit f07da80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kedro-datasets/kedro_datasets/ibis/file_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def connection(self) -> BaseBackend:
def load(self) -> ir.Table:
load_path = self._get_load_path()
reader = getattr(self.connection, f"read_{self._file_format}")
return reader(load_path, self._table_name, **self._load_args)
return reader(load_path, table_name=self._table_name, **self._load_args)

def save(self, data: ir.Table) -> None:
save_path = self._get_save_path()
Expand Down

0 comments on commit f07da80

Please sign in to comment.