Skip to content

Commit

Permalink
fix: IntegrityChecker must not load basins
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Nov 25, 2024
1 parent f98f57b commit c2fbfbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
0.62.7
- fix: IntegrityChecker must not load basins
- tests: avoid architecture and Python-version dependent test
0.62.6
- enh: support passing pathlib.Path to lme4.rsetup.set_*_path methods
Expand Down
2 changes: 1 addition & 1 deletion dclab/rtdc_dataset/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def __init__(self, path_or_ds):
else:
with warnings.catch_warnings(record=True) as ws:
warnings.simplefilter("always")
self.ds = load_file(path_or_ds)
self.ds = load_file(path_or_ds, enable_basins=False)
for ww in ws:
self.warn_cues.append(ICue(
msg=f"{ww.category.__name__}: {ww.message}",
Expand Down

0 comments on commit c2fbfbd

Please sign in to comment.