File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -229,14 +229,18 @@ def test_check_single_row_pass():
229229
230230
231231def test_check_single_row_ignore_units ():
232- table = Units (name = "Units" ,) # default name when building through nwbfile
232+ table = Units (
233+ name = "Units" ,
234+ ) # default name when building through nwbfile
233235 table .add_unit (spike_times = [1 , 2 , 3 ])
234236 assert check_single_row (table = table ) is None
235237
236238
237239@pytest .mark .skipif (get_package_version (name = "pynwb" ) >= version .Version ("2.1.0" )) # TODO: remove skip when fixed
238240def test_check_single_row_ignore_electrodes ():
239- table = ElectrodeTable (name = "electrodes" ,) # default name when building through nwbfile
241+ table = ElectrodeTable (
242+ name = "electrodes" ,
243+ ) # default name when building through nwbfile
240244 table .add_row (
241245 x = np .nan ,
242246 y = np .nan ,
You can’t perform that action at this time.
0 commit comments