From f46e6964e7543a637494632ae79df4e9b4fd0722 Mon Sep 17 00:00:00 2001 From: Calvin Date: Tue, 24 Dec 2024 13:44:25 +0200 Subject: [PATCH] Fix typo in warning message for TS energy check in check_rxn_e0 function --- arc/checks/ts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arc/checks/ts.py b/arc/checks/ts.py index 4ee8f1e92a..b5bd081689 100644 --- a/arc/checks/ts.py +++ b/arc/checks/ts.py @@ -248,7 +248,7 @@ def check_rxn_e0(reaction: 'ARCReaction', if r_e0 >= ts_e0 or p_e0 >= ts_e0: reaction.ts_species.ts_checks['E0'] = False if r_e0 + 1 >= ts_e0 or p_e0 + 1 >= ts_e0: - logger.warning('TS energy gas relative to one fo the wells is lower than 1 kJ/mol, skipping this TS') + logger.warning('TS energy gas relative to one of the wells is lower than 1 kJ/mol, skipping this TS') reaction.ts_species.ts_checks['E0'] = False else: reaction.ts_species.ts_checks['E0'] = True