You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
except ValueError as e:
estr = str(e)
if estr == "cannot handle a non-unique multi-index!":
warnings.warn(
"Non-unique multi-index for DataFrame in _fill_perfdata. Cannot Fill missing rows.",
RuntimeWarning,
)
else:
raise
As stated from a previous comment, instead of checking the error string, we should check if the index is non-unique.
The text was updated successfully, but these errors were encountered:
From
ensemble.py
:As stated from a previous comment, instead of checking the error string, we should check if the index is non-unique.
The text was updated successfully, but these errors were encountered: