Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
bendichter committed Jul 31, 2023
1 parent 6c941a0 commit f8e35d3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
14 changes: 12 additions & 2 deletions tests/integration/hdf5/test_ecephys.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
from hdmf.common import DynamicTableRegion

from pynwb.ecephys import ElectrodeGroup, ElectricalSeries, FilteredEphys, LFP, Clustering, ClusterWaveforms,\
SpikeEventSeries, EventWaveform, EventDetection, FeatureExtraction
from pynwb.ecephys import (
ElectrodeGroup,
ElectricalSeries,
FilteredEphys,
LFP,
Clustering,
ClusterWaveforms,
SpikeEventSeries,
EventWaveform,
EventDetection,
FeatureExtraction,
)
from pynwb.device import Device
from pynwb.file import ElectrodeTable as get_electrode_table
from pynwb.testing import NWBH5IOMixin, AcquisitionH5IOMixin, TestCase
Expand Down
14 changes: 12 additions & 2 deletions tests/unit/test_ecephys.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,18 @@

import numpy as np

from pynwb.ecephys import ElectricalSeries, SpikeEventSeries, EventDetection, Clustering, EventWaveform,\
ClusterWaveforms, LFP, FilteredEphys, FeatureExtraction, ElectrodeGroup
from pynwb.ecephys import (
ElectricalSeries,
SpikeEventSeries,
EventDetection,
Clustering,
EventWaveform,
ClusterWaveforms,
LFP,
FilteredEphys,
FeatureExtraction,
ElectrodeGroup,
)
from pynwb.device import Device
from pynwb.file import ElectrodeTable
from pynwb.testing import TestCase
Expand Down

0 comments on commit f8e35d3

Please sign in to comment.