We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50f2644 commit 56bf65cCopy full SHA for 56bf65c
src/petab_gui/controllers/mother_controller.py
@@ -857,11 +857,15 @@ def check_model(self):
857
858
# Log the consistency check result
859
if not failed:
860
- self.logger.log_message("Model is consistent.", color="green")
+ self.logger.log_message(
861
+ "PEtab problem has no errors.", color="green"
862
+ )
863
for model in self.model.pandas_models.values():
864
model.reset_invalid_cells()
865
else:
- self.logger.log_message("Model is inconsistent.", color="red")
866
867
+ "PEtab problem has errors.", color="red"
868
869
except Exception as e:
870
msg = f"PEtab linter failed at some point: {filtered_error(e)}"
871
self.logger.log_message(msg, color="red")
0 commit comments