From 1aeffd8ea19216b1b3ba6c0f2408cc6affbdb912 Mon Sep 17 00:00:00 2001 From: rly Date: Thu, 21 Mar 2024 23:28:21 -0700 Subject: [PATCH] Fix flake8 --- tests/integration/hdf5/test_file_copy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration/hdf5/test_file_copy.py b/tests/integration/hdf5/test_file_copy.py index a6c37d56a..b491586fb 100644 --- a/tests/integration/hdf5/test_file_copy.py +++ b/tests/integration/hdf5/test_file_copy.py @@ -5,6 +5,7 @@ from pynwb.testing.mock.file import mock_NWBFile from pynwb.testing.mock.base import mock_TimeSeries + class TestFileCopy(TestCase): def setUp(self): @@ -40,4 +41,4 @@ def test_copy_file_link_timeintervals_timeseries(self): nwb = io.read() ts_val = nwb.trials["timeseries"][0][0] assert isinstance(ts_val, TimeSeriesReference) - assert ts_val.timeseries is nwb.acquisition["test_ts"] \ No newline at end of file + assert ts_val.timeseries is nwb.acquisition["test_ts"]