Skip to content

Commit

Permalink
[cocopp] remove transient consistency check
Browse files Browse the repository at this point in the history
addressing #2302
  • Loading branch information
nikohansen committed Jul 3, 2024
1 parent 9fffa5a commit 60b0415
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code-postprocessing/cocopp/pproc.py
Original file line number Diff line number Diff line change
Expand Up @@ -2559,8 +2559,8 @@ def append(self, o, check_data_type='warn'):
elif getattr(o, 'pickleFile', False):
i.modsFromPickleVersion = False
i.pickleFile = o.pickleFile
if not i.consistency_check():
warnings.warn("merged {} getting an inconsistent data set {}".format(o, i))
# if not i.consistency_check(): # might not be consistent here, but is (should be) checked in the end
# warnings.warn("merged {} getting an inconsistent data set {}".format(o, i))
break
if not isFound:
list.append(self, o)
Expand Down

0 comments on commit 60b0415

Please sign in to comment.