Skip to content

Commit

Permalink
ruff formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz-Alexander-Kern authored Jun 16, 2024
1 parent bdd98ee commit cdf2aae
Show file tree
Hide file tree
Showing 70 changed files with 14,267 additions and 10,262 deletions.
49 changes: 26 additions & 23 deletions elephant/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,30 @@
:license: Modified BSD, see LICENSE.txt for details.
"""

from . import (cell_assembly_detection,
change_point_detection,
conversion,
cubic,
current_source_density,
gpfa,
kernels,
neo_tools,
phase_analysis,
signal_processing,
spade,
spectral,
spike_train_correlation,
spike_train_dissimilarity,
spike_train_generation,
spike_train_surrogates,
spike_train_synchrony,
sta,
trials,
unitary_event_analysis,
waveform_features,
statistics)
from . import (
cell_assembly_detection,
change_point_detection,
conversion,
cubic,
current_source_density,
gpfa,
kernels,
neo_tools,
phase_analysis,
signal_processing,
spade,
spectral,
spike_train_correlation,
spike_train_dissimilarity,
spike_train_generation,
spike_train_surrogates,
spike_train_synchrony,
sta,
trials,
unitary_event_analysis,
waveform_features,
statistics,
)

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

def _get_version():
import os

elephant_dir = os.path.dirname(__file__)
with open(os.path.join(elephant_dir, 'VERSION')) as version_file:
with open(os.path.join(elephant_dir, "VERSION")) as version_file:
version = version_file.read().strip()
return version

Expand Down
Loading

0 comments on commit cdf2aae

Please sign in to comment.