diff --git a/src/ydata_profiling/model/spark/summary_spark.py b/src/ydata_profiling/model/spark/summary_spark.py index 7d2ca0c2e..13a85f4c3 100644 --- a/src/ydata_profiling/model/spark/summary_spark.py +++ b/src/ydata_profiling/model/spark/summary_spark.py @@ -87,7 +87,7 @@ def multiprocess_1d(args: tuple) -> Tuple[str, dict]: column, df = args return column, describe_1d(config, df.select(column), summarizer, typeset) - # Rename the df column names to prevent potential conflicts + # Rename the df column names to prevent potential conflicts for col in df.columns: df = df.withColumnRenamed(col, f"{col}_customer")