Skip to content
This repository was archived by the owner on Jan 12, 2026. It is now read-only.

Commit b37179a

Browse files
authored
Fix bad super() (#184)
1 parent 7b06d60 commit b37179a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xgboost_ray/data_sources/ml_dataset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ def get_n(data: MLDatasetType):
7474
@staticmethod
7575
def convert_to_series(data: MLDatasetType) -> pd.Series:
7676
_assert_pyarrow_installed()
77-
return super().convert_to_series(data)
77+
return DataSource.convert_to_series(data)
7878

7979
@staticmethod
8080
def get_actor_shards(data: MLDatasetType, actors: Sequence[ActorHandle]
8181
) -> Tuple[Any, Optional[Dict[int, Any]]]:
8282
_assert_pyarrow_installed()
83-
return super().get_actor_shards(data, actors)
83+
return DataSource.get_actor_shards(data, actors)

0 commit comments

Comments
 (0)