Skip to content

Commit 2f97cd7

Browse files
committed
fix
1 parent 3b6df22 commit 2f97cd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ads/opctl/operator/lowcode/common/transformations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def _missing_value_imputation_add(self, df):
219219
-------
220220
A new Pandas DataFrame without missing values.
221221
"""
222-
df.fillna(0, inplace=True)
222+
return df.fillna(0)
223223

224224
def _outlier_treatment(self, df):
225225
"""

0 commit comments

Comments
 (0)