From dababb1667428dae05b1cbe888a65936f59f3934 Mon Sep 17 00:00:00 2001 From: rly Date: Thu, 19 Jan 2023 00:17:58 -0800 Subject: [PATCH] Fix flake8 --- src/pynwb/testing/testh5io.py | 2 +- tests/integration/hdf5/test_nwbfile.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pynwb/testing/testh5io.py b/src/pynwb/testing/testh5io.py index 7346c76d3..08626f943 100644 --- a/src/pynwb/testing/testh5io.py +++ b/src/pynwb/testing/testh5io.py @@ -375,4 +375,4 @@ def validate(self): with NWBHDF5IO(self.filename, mode='r') as io: errors = pynwb_validate(io) if errors: - raise Exception("\n".join(errors)) \ No newline at end of file + raise Exception("\n".join(errors)) diff --git a/tests/integration/hdf5/test_nwbfile.py b/tests/integration/hdf5/test_nwbfile.py index c8d3688ef..b93a697c5 100644 --- a/tests/integration/hdf5/test_nwbfile.py +++ b/tests/integration/hdf5/test_nwbfile.py @@ -12,7 +12,6 @@ from pynwb.epoch import TimeIntervals from pynwb.ecephys import ElectricalSeries from pynwb.testing import NWBH5IOMixin, NWBH5IOFlexMixin, TestCase, remove_test_file -from pynwb.testing.mock.file import mock_NWBFile class TestNWBFileHDF5IO(TestCase):