Skip to content

Commit 5e37f9a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 14f6822 commit 5e37f9a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/unit_tests/test_tables.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,14 +229,18 @@ def test_check_single_row_pass():
229229

230230

231231
def 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
238240
def 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,

0 commit comments

Comments
 (0)