Issues (587)

mutis/__init__.py (2 issues)

1
# Licensed under a 3-clause BSD style license - see LICENSE
2
"""MUTIS: A Python package for muti-wavelength time series analysis."""
3
4
__all__ = ["__version__"]
5
6
import pkg_resources
7
8
try:
9
    __version__ = pkg_resources.get_distribution(__name__).version
10
except pkg_resources.DistributionNotFound:
11
    # package is not installed
12
    pass
13
14
from mutis.correlation import Correlation
0 ignored issues
show
Import "from mutis.correlation import Correlation" should be placed at the top of the module
Loading history...
15
from mutis.signal import Signal
0 ignored issues
show
Import "from mutis.signal import Signal" should be placed at the top of the module
Loading history...
16