Skip to content

Commit

Permalink
Update trials.py
Browse files Browse the repository at this point in the history
Hotfix
  • Loading branch information
RobertoDF authored Nov 9, 2023
1 parent 4467f13 commit 6114e76
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,11 @@ 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 6114e76

Please sign in to comment.