summaryrefslogtreecommitdiff
path: root/lib/parameters.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parameters.py')
-rw-r--r--lib/parameters.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/parameters.py b/lib/parameters.py
index 095642f..300bb6f 100644
--- a/lib/parameters.py
+++ b/lib/parameters.py
@@ -153,10 +153,8 @@ def _corr_by_param(attribute_data, param_values, param_index):
# Building a correlation coefficient is pointless in this case
# -> assume no correlation
return 0.0
- except ValueError:
- logger.error(
- "ValueError in _corr_by_param(param_index={})".format(param_index)
- )
+ except (TypeError, ValueError) as e:
+ logger.error(f"{e} in _corr_by_param(param_index={param_index})")
logger.error(
"while executing np.corrcoef({}, {}))".format(
attribute_data, param_values