Skip to content

Commit

Permalink
Move __all__ for PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
paddyroddy authored Nov 21, 2024
1 parent 706f0df commit 82fa185
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/sleplet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
""".. include:: ./../../documentation/DOCUMENTATION.md""" # noqa: D400,D415

__all__ = [
"functions",
"harmonic_methods",
"meshes",
"noise",
"plot_methods",
"plotting",
"slepian_methods",
"slepian",
"wavelet_methods",
]

import logging

from . import (
Expand All @@ -15,18 +27,6 @@
)
from ._version import __version__ # noqa: F401

__all__ = [
"functions",
"harmonic_methods",
"meshes",
"noise",
"plot_methods",
"plotting",
"slepian_methods",
"slepian",
"wavelet_methods",
]

_logger = logging.getLogger(__name__)

_formatter = logging.Formatter(
Expand Down

0 comments on commit 82fa185

Please sign in to comment.