Skip to content

Commit 6ff7173

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4ddaf54 commit 6ff7173

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
@@ -228,13 +228,17 @@ def test_check_single_row_pass():
228228

229229

230230
def test_check_single_row_ignore_units():
231-
table = Units(name="Units",) # default name when building through nwbfile
231+
table = Units(
232+
name="Units",
233+
) # default name when building through nwbfile
232234
table.add_unit(spike_times=[1, 2, 3])
233235
assert check_single_row(table=table) is None
234236

235237

236238
def test_check_single_row_ignore_electrodes():
237-
table = ElectrodeTable(name="electrodes",) # default name when building through nwbfile
239+
table = ElectrodeTable(
240+
name="electrodes",
241+
) # default name when building through nwbfile
238242
if get_package_version(name="pynwb") >= version.Version("2.1.0"):
239243
table.add_row(
240244
location="unknown",

0 commit comments

Comments
 (0)