Skip to content

Commit 692efe4

Browse files
committed
merge main
1 parent 1f0344d commit 692efe4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cleanlab_studio/studio/studio.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,10 @@ def apply_corrections(self, cleanset_id: str, dataset: Any, keep_excluded: bool
144144
cl_cols = self.download_cleanlab_columns(
145145
cleanset_id, to_spark=False, include_project_details=True
146146
)
147-
snowflake_corrected_ds: snowpark.DataFrame = apply_corrections_snowpark_df(
147+
corrected_ds: snowpark.DataFrame = apply_corrections_snowpark_df(
148148
dataset, cl_cols, id_col, label_col, keep_excluded
149149
)
150-
return snowflake_corrected_ds
150+
return corrected_ds
151151

152152
elif _pyspark_exists and isinstance(dataset, pyspark.sql.DataFrame):
153153
cl_cols = self.download_cleanlab_columns(

0 commit comments

Comments
 (0)