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
{{ message }}
This repository has been archived by the owner on Aug 2, 2019. It is now read-only.
Commit 5200e3d seems introduce the error in the method update_component at the line:
parameter=getattr(self, parameter)[index]
when parameter is 'scales for instance, it can be an empty list. This happens when the data passed to the tabular_data has a pandas.DateTimeIndex (see the inner function period_axis).
I'm trying to write a test case for this.
Best regards,
Damien G.
The text was updated successfully, but these errors were encountered:
Nice bug! The problem is that update_component was trying to index an empty list, because no scale component had been defined yet. Commit c59cf39 should fix- let me know if you're still having problems.
Hi,
Commit 5200e3d seems introduce the error in the method
update_component
at the line:when
parameter
is'scales
for instance, it can be an empty list. This happens when the data passed to thetabular_data
has apandas.DateTimeIndex
(see the inner functionperiod_axis
).I'm trying to write a test case for this.
Best regards,
Damien G.
The text was updated successfully, but these errors were encountered: