We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__all__
1 parent 706f0df commit c6cd4bbCopy full SHA for c6cd4bb
src/sleplet/__init__.py
@@ -1,5 +1,17 @@
1
""".. include:: ./../../documentation/DOCUMENTATION.md""" # noqa: D400,D415
2
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
+
15
import logging
16
17
from . import (
@@ -15,18 +27,6 @@
27
)
28
from ._version import __version__ # noqa: F401
29
18
-__all__ = [
19
- "functions",
20
- "harmonic_methods",
21
- "meshes",
22
- "noise",
23
- "plot_methods",
24
- "plotting",
25
- "slepian_methods",
26
- "slepian",
- "wavelet_methods",
-]
-
30
_logger = logging.getLogger(__name__)
31
32
_formatter = logging.Formatter(
0 commit comments