From 1b0ad999b11b2d710d60cf8c14125fbb36e36708 Mon Sep 17 00:00:00 2001 From: Nathan Baker Date: Sat, 23 May 2020 08:06:54 -0700 Subject: [PATCH] Remove unnecessary exception catching. Fixes https://github.com/jensengroup/propka-3.1/pull/36#discussion_r429063049 --- tests/test_basic_regression.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_basic_regression.py b/tests/test_basic_regression.py index f90f009..13e8e43 100644 --- a/tests/test_basic_regression.py +++ b/tests/test_basic_regression.py @@ -69,8 +69,6 @@ def run_propka(options, pdb_path, tmp_path): molecule = propka.molecular_container.Molecular_container(str(pdb_path), args) molecule.calculate_pka() molecule.write_pka() - except Exception as err: - raise err finally: os.chdir(cwd)