Skip to content

Commit

Permalink
fix: set compute default to false
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarros authored and aquemy committed Dec 21, 2022
1 parent 885aac0 commit e786ac6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pandas_profiling/compare_reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def _apply_config(description: dict, config: Settings) -> dict:
def compare(
reports: List[ProfileReport],
config: Optional[Settings] = None,
compute: bool = True,
compute: bool = False,
) -> ProfileReport:
"""
Compare Profile reports
Expand All @@ -233,6 +233,7 @@ def compare(
input may either be a ProfileReport, or the summary obtained from report.get_description()
config: the settings object for the merged ProfileReport
compute: recompute the profile report using config or the left report config
recommended in cases where the reports were created using different settings
"""
validate_reports(reports)
Expand Down

0 comments on commit e786ac6

Please sign in to comment.