Skip to content

Commit 78b9d06

Browse files
ruff formatting
1 parent 354df08 commit 78b9d06

71 files changed

Lines changed: 14711 additions & 10552 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

elephant/__init__.py

Lines changed: 26 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,30 @@
66
:license: Modified BSD, see LICENSE.txt for details.
77
"""
88

9-
from . import (cell_assembly_detection,
10-
change_point_detection,
11-
conversion,
12-
cubic,
13-
current_source_density,
14-
gpfa,
15-
kernels,
16-
neo_tools,
17-
phase_analysis,
18-
signal_processing,
19-
spade,
20-
spectral,
21-
spike_train_correlation,
22-
spike_train_dissimilarity,
23-
spike_train_generation,
24-
spike_train_surrogates,
25-
spike_train_synchrony,
26-
sta,
27-
trials,
28-
unitary_event_analysis,
29-
waveform_features,
30-
statistics)
9+
from . import (
10+
cell_assembly_detection,
11+
change_point_detection,
12+
conversion,
13+
cubic,
14+
current_source_density,
15+
gpfa,
16+
kernels,
17+
neo_tools,
18+
phase_analysis,
19+
signal_processing,
20+
spade,
21+
spectral,
22+
spike_train_correlation,
23+
spike_train_dissimilarity,
24+
spike_train_generation,
25+
spike_train_surrogates,
26+
spike_train_synchrony,
27+
sta,
28+
trials,
29+
unitary_event_analysis,
30+
waveform_features,
31+
statistics,
32+
)
3133

3234
# not included modules on purpose:
3335
# parallel: avoid warns when elephant is imported
@@ -43,8 +45,9 @@
4345

4446
def _get_version():
4547
import os
48+
4649
elephant_dir = os.path.dirname(__file__)
47-
with open(os.path.join(elephant_dir, 'VERSION')) as version_file:
50+
with open(os.path.join(elephant_dir, "VERSION")) as version_file:
4851
version = version_file.read().strip()
4952
return version
5053

0 commit comments

Comments
 (0)