Skip to content

Commit

Permalink
fixing style: line lengths and unused packages
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhcharlton committed May 7, 2024
1 parent 2d17cde commit a84d14d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 3 additions & 1 deletion neurokit2/ppg/ppg_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ def ppg_methods(
import neurokit2 as nk
methods = nk.ppg_methods(sampling_rate=100, method="elgendi", method_cleaning="nabian2018", method_quality="templatematch")
methods = nk.ppg_methods(
sampling_rate=100, method="elgendi",
method_cleaning="nabian2018", method_quality="templatematch")
print(methods["text_cleaning"])
print(methods["references"][0])
Expand Down
5 changes: 0 additions & 5 deletions neurokit2/ppg/ppg_quality.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
# - * - coding: utf-8 - * -
from warnings import warn

import numpy as np
import scipy

from ..epochs import epochs_to_df
from ..misc import NeuroKitWarning
from ..signal import signal_interpolate
from ..signal.signal_power import signal_power
from ..stats import distance, rescale
from .ppg_peaks import ppg_peaks
from .ppg_segment import ppg_segment

Expand Down

0 comments on commit a84d14d

Please sign in to comment.