Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jun 10, 2024
1 parent 8e673de commit 51e6c2a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions msalign/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Signal calibration and alignment by reference peaks - copy of MSALIGN function from MATLAB bioinformatics library."""

from typing import List

import numpy as np
Expand Down
1 change: 1 addition & 0 deletions msalign/align.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Main alignment class"""

import logging
import time
import typing as ty
Expand Down
1 change: 1 addition & 0 deletions msalign/utilities.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Various utilities used by the library"""

import time
import warnings
from typing import List, Union
Expand Down
1 change: 1 addition & 0 deletions tests/test_init.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests."""

from msalign import __version__


Expand Down
1 change: 1 addition & 0 deletions tests/test_msalign.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test functions"""

import numpy as np
import pytest
from scipy import signal
Expand Down
1 change: 1 addition & 0 deletions tests/test_utilities.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utilities."""

import numpy as np
import pytest
import scipy.interpolate as interpolate
Expand Down

0 comments on commit 51e6c2a

Please sign in to comment.