We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36ee228 commit 3b53fffCopy full SHA for 3b53fff
python/hsfs/engine/python.py
@@ -1473,9 +1473,9 @@ def _start_offline_materialization(offline_write_options: Dict[str, Any]) -> boo
1473
def _convert_feature_log_to_df(feature_log, cols) -> pd.DataFrame:
1474
if feature_log is None and cols:
1475
return pd.DataFrame(columns=cols)
1476
- if not (isinstance(feature_log, (list, pd.DataFrame, pl.DataFrame))) or (
+ if not (isinstance(feature_log, (list, pd.DataFrame, pl.DataFrame)) or (
1477
HAS_NUMPY and isinstance(feature_log, np.ndarray)
1478
- ):
+ )):
1479
raise ValueError(f"Type '{type(feature_log)}' not accepted")
1480
if isinstance(feature_log, list) or (
1481
0 commit comments