Skip to content

Commit b83b405

Browse files
committed
added neb to check_ess_settings, for testing
1 parent 4543483 commit b83b405

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arc/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def check_ess_settings(ess_settings: Optional[dict] = None) -> dict:
141141
f'strings. Got: {server_list} which is a {type(server_list)}')
142142
# run checks:
143143
for ess, server_list in settings_dict.items():
144-
if ess.lower() not in supported_ess + ['gcn', 'heuristics', 'autotst', 'kinbot', 'xtb_gsm']:
144+
if ess.lower() not in supported_ess + ['gcn', 'heuristics', 'autotst', 'kinbot', 'xtb_gsm', 'orca_neb']:
145145
raise SettingsError(f'Recognized ESS software are {supported_ess}. Got: {ess}')
146146
for server in server_list:
147147
if not isinstance(server, bool) and server.lower() not in [s.lower() for s in servers.keys()]:

0 commit comments

Comments
 (0)