diff --git a/qcdash/app.py b/qcdash/app.py index 8fae568..cf4f21f 100644 --- a/qcdash/app.py +++ b/qcdash/app.py @@ -27,6 +27,9 @@ def _get_prev_str(prev: np.ndarray): def rename_estimators(estimators, rev=False): + if estimators is None: + return None + _rnm = _renames if rev: _rnm = {v: k for k, v in _renames.items()}