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 and morriscb committed Nov 10, 2023
1 parent 1da39dc commit 4a0e4cb
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 4a0e4cb

Please sign in to comment.