Skip to content

Commit c6cd4bb

Browse files
authored
Move __all__ for PEP8 (#428)
1 parent 706f0df commit c6cd4bb

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/sleplet/__init__.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
""".. include:: ./../../documentation/DOCUMENTATION.md""" # noqa: D400,D415
22

3+
__all__ = [
4+
"functions",
5+
"harmonic_methods",
6+
"meshes",
7+
"noise",
8+
"plot_methods",
9+
"plotting",
10+
"slepian_methods",
11+
"slepian",
12+
"wavelet_methods",
13+
]
14+
315
import logging
416

517
from . import (
@@ -15,18 +27,6 @@
1527
)
1628
from ._version import __version__ # noqa: F401
1729

18-
__all__ = [
19-
"functions",
20-
"harmonic_methods",
21-
"meshes",
22-
"noise",
23-
"plot_methods",
24-
"plotting",
25-
"slepian_methods",
26-
"slepian",
27-
"wavelet_methods",
28-
]
29-
3030
_logger = logging.getLogger(__name__)
3131

3232
_formatter = logging.Formatter(

0 commit comments

Comments
 (0)