From ece9c034a007aad7efcca849b3b3bff96378c14f Mon Sep 17 00:00:00 2001 From: Joanna Stevens Date: Tue, 15 Apr 2025 14:47:26 +0100 Subject: [PATCH] Remove arg bool type NO_JIRA --- .../multi_component_hydrogen_bond_propensity_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/multi_component_hydrogen_bond_propensity/multi_component_hydrogen_bond_propensity_report.py b/scripts/multi_component_hydrogen_bond_propensity/multi_component_hydrogen_bond_propensity_report.py index c3c5a18..3170299 100644 --- a/scripts/multi_component_hydrogen_bond_propensity/multi_component_hydrogen_bond_propensity_report.py +++ b/scripts/multi_component_hydrogen_bond_propensity/multi_component_hydrogen_bond_propensity_report.py @@ -438,7 +438,7 @@ def main(structure, work_directory, failure_directory, library, csdrefcode, igno default=ccdc_coformers_dir) parser.add_argument('-f', '--failure_directory', type=str, help='The location where the failures file should be generated') - parser.add_argument('-i', '--ignore_intra', type=bool, action='store_true', default=False, + parser.add_argument('-i', '--ignore_intra', action='store_true', default=False, help='Ignore intramolecular hydrogen bonds when ranking pairs') parser.add_argument('--force_run_disordered', action="store_true", help='Forces running the script on disordered entries. (NOT RECOMMENDED)', default=False)