Skip to content

Commit

Permalink
Fix sort
Browse files Browse the repository at this point in the history
  • Loading branch information
laszukdawid committed May 23, 2023
1 parent 5b3e50b commit 7361a88
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ doc:

format:
black PyEMD

lint-check:
python -m isort --check PyEMD
python -m black --check PyEMD
2 changes: 1 addition & 1 deletion PyEMD/EMD.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import numpy as np
from scipy.interpolate import interp1d

from PyEMD.splines import akima, cubic_spline_3pts, cubic, pchip, cubic_hermite
from PyEMD.splines import akima, cubic, cubic_hermite, cubic_spline_3pts, pchip
from PyEMD.utils import get_timeline

FindExtremaOutput = Tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray, np.ndarray]
Expand Down
2 changes: 1 addition & 1 deletion PyEMD/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging

__version__ = "1.5.0"
__version__ = "1.5.1"
logger = logging.getLogger("pyemd")

from PyEMD.CEEMDAN import CEEMDAN # noqa
Expand Down

0 comments on commit 7361a88

Please sign in to comment.