Skip to content

Commit ad7cb0e

Browse files
committed
reformating with black
1 parent 7b07c9b commit ad7cb0e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/hsfs/engine/python.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,9 @@ def validate_with_great_expectations(
605605
# This conversion might cause a bottleneck in performance when using polars with greater expectations.
606606
# This patch is done becuase currently great_expecatations does not support polars, would need to be made proper when support added.
607607
if isinstance(dataframe, pl.DataFrame):
608-
warnings.warn("Great Expectations does not support Polars dataframes directly using Great Expectations with Polars datarames can be slow.")
608+
warnings.warn(
609+
"Great Expectations does not support Polars dataframes directly using Great Expectations with Polars datarames can be slow."
610+
)
609611
dataframe = dataframe.to_pandas()
610612
report = ge.from_pandas(
611613
dataframe, expectation_suite=expectation_suite

0 commit comments

Comments
 (0)