We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1da39dc commit 4a0e4cbCopy full SHA for 4a0e4cb
allensdk/brain_observatory/behavior/data_objects/trials/trials.py
@@ -275,7 +275,10 @@ def index(self) -> pd.Index:
275
276
@property
277
def change_time(self) -> pd.Series:
278
- return self.data["change_time"]
+ if "change_time" in self.data:
279
+ return self.data["change_time"]
280
+ elif "change_time_no_display_delay" in self.data:
281
+ return self.data["change_time_no_display_delay"]
282
283
284
def lick_times(self) -> pd.Series:
0 commit comments