diff --git a/src/ydata_profiling/model/pandas/summary_pandas.py b/src/ydata_profiling/model/pandas/summary_pandas.py index 2103844f8..e6cc6ae6d 100644 --- a/src/ydata_profiling/model/pandas/summary_pandas.py +++ b/src/ydata_profiling/model/pandas/summary_pandas.py @@ -94,7 +94,11 @@ def describe_column(name: str, series: pd.Series) -> Tuple[str, dict]: for name, series in df.items() } - for future in tqdm(future_to_col.keys(), total=len(future_to_col)): + for future in tqdm( + future_to_col.keys(), + total=len(future_to_col), + disable=not config.progress_bar, + ): name, description = future.result() series_description[name] = description