Skip to content

Commit

Permalink
fix name of method_cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
danibene committed Feb 26, 2023
1 parent 7c99915 commit 3152652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neurokit2/eda/eda_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def eda_methods(
report_info["text_cleaning"] += " was cleaned using the biosppy package."
elif method_cleaning in ["default", "neurokit", "nk"]:
report_info["text_cleaning"] += " was cleaned using the default method of the neurokit2 package."
elif method_peaks is None or method_peaks in ["none"]:
elif method_cleaning is None or method_cleaning in ["none"]:
report_info["text_cleaning"] += "was directly used without cleaning."
else:
report_info["text_cleaning"] += " was cleaned using the method described in " + method_cleaning + "."
Expand Down

0 comments on commit 3152652

Please sign in to comment.