Skip to content

Commit 5989a4d

Browse files
authored
Merge pull request #121 from rohangirishrao/fix-apply-threshold
Fix typo in `apply_threshold` referencing parameter in method body
2 parents 499526c + 598bff9 commit 5989a4d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/imcflibs/imagej/processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def apply_threshold(imp, threshold_method, do_3d=True):
118118
imageplus = imp.duplicate()
119119

120120
auto_threshold_options = (
121-
threshold_method + " " + "dark" + " " + "stack" if do_3D else ""
121+
threshold_method + " " + "dark" + " " + "stack" if do_3d else ""
122122
)
123123

124124
log.debug("Auto threshold options: %s" % auto_threshold_options)

0 commit comments

Comments
 (0)