File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -507,7 +507,7 @@ def add_trial(self, **kwargs):
507507 Add a trial to the trial table.
508508 See :py:meth:`~pynwb.core.DynamicTable.add_row` for more details.
509509
510- Required fields are *start *, *end *, and any columns that have
510+ Required fields are *start_time *, *stop_time *, and any columns that have
511511 been added (through calls to `add_trial_columns`).
512512 """
513513 self .__check_trials ()
@@ -619,9 +619,8 @@ def ElectrodeTable(name='electrodes',
619619 )
620620
621621
622- def TrialTable (name = 'trials' ,
623- description = 'metadata about experimental trials' ):
624- return _tablefunc (name , description , ['start' , 'end' ])
622+ def TrialTable (name = 'trials' , description = 'metadata about experimental trials' ):
623+ return _tablefunc (name , description , ['start_time' , 'stop_time' ])
625624
626625
627626def InvalidTimesTable (name = 'invalid_times' , description = 'time intervals to be removed from analysis' ):
You can’t perform that action at this time.
0 commit comments