Skip to content

Commit f20b495

Browse files
Merge pull request #396 from dlubal-software/Rebecca_bugfix_calculate_all
Bugfix Calculate_all
2 parents 5fdfb2d + 56b3895 commit f20b495

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

RFEM/initModel.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,8 @@ def Calculate_all(skipWarnings: bool = False, model = Model):
448448
'''
449449

450450
from RFEM.Tools.PlausibilityCheck import PlausibilityCheck
451-
PlausibilityCheck()
451+
if not skipWarnings:
452+
PlausibilityCheck()
452453

453454
calculationMessages = model.clientModel.service.calculate_all(skipWarnings)
454455
return calculationMessages

0 commit comments

Comments
 (0)