Skip to content

Commit 2d55f32

Browse files
alexbarrosvascoalramos
authored andcommitted
fix: set compute default to false
1 parent 97a9c83 commit 2d55f32

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pandas_profiling/compare_reports.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def _apply_config(description: dict, config: Settings) -> dict:
223223
def compare(
224224
reports: List[ProfileReport],
225225
config: Optional[Settings] = None,
226-
compute: bool = True,
226+
compute: bool = False,
227227
) -> ProfileReport:
228228
"""
229229
Compare Profile reports
@@ -233,6 +233,7 @@ def compare(
233233
input may either be a ProfileReport, or the summary obtained from report.get_description()
234234
config: the settings object for the merged ProfileReport
235235
compute: recompute the profile report using config or the left report config
236+
recommended in cases where the reports were created using different settings
236237
237238
"""
238239
validate_reports(reports)

0 commit comments

Comments
 (0)