bug fixed in qdash/app

This commit is contained in:
Lorenzo Volpi 2024-02-03 13:20:53 +01:00
parent 46c24d9fd8
commit e50059397c
1 changed files with 3 additions and 0 deletions

View File

@ -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()}