File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments