Skip to content

Commit

Permalink
Merge pull request #2734 from RobertoDF/master
Browse files Browse the repository at this point in the history
Hotfix for #2733
  • Loading branch information
morriscb committed Nov 10, 2023
2 parents 3ea5f4a + 9200c0f commit a2e4885
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,10 @@ def index(self) -> pd.Index:

@property
def change_time(self) -> pd.Series:
return self.data["change_time"]
if "change_time" in self.data:
return self.data["change_time"]
elif "change_time_no_display_delay" in self.data:
return self.data["change_time_no_display_delay"]

@property
def lick_times(self) -> pd.Series:
Expand Down

0 comments on commit a2e4885

Please sign in to comment.