Skip to content

Commit 62448aa

Browse files
committed
fix the log expression of clean df on clean gui
1 parent b2f79ed commit 62448aa

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

dataprep/clean/gui/clean_gui.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,12 @@ def cleanWholeDF() -> Any:
213213
ts_point += 1
214214

215215
# Update log with clean_df function
216-
log = f"clean_df(df, clean_header={clean_headers},\
217-
data_type_detection='{data_type_detection}',\
218-
standardize_missing_values='{standardize_missing}',\
219-
downcast_memory={downcast_memory})"
216+
log = (
217+
f"clean_df(df, clean_header={clean_headers},"
218+
f"data_type_detection='{data_type_detection}',"
219+
f"standardize_missing_values='{standardize_missing}',"
220+
f"downcast_memory={downcast_memory})"
221+
)
220222
global all_logs
221223
all_logs.append(log)
222224
global operation_log

0 commit comments

Comments
 (0)