From 598bff906c7ba82b084cf2c2bd8609adbde4508e Mon Sep 17 00:00:00 2001 From: Rohan Girish Date: Wed, 14 Jan 2026 15:15:39 +0100 Subject: [PATCH] Fix typo in method body --- src/imcflibs/imagej/processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imcflibs/imagej/processing.py b/src/imcflibs/imagej/processing.py index 0e3d2224..41a6b9ae 100644 --- a/src/imcflibs/imagej/processing.py +++ b/src/imcflibs/imagej/processing.py @@ -118,7 +118,7 @@ def apply_threshold(imp, threshold_method, do_3d=True): imageplus = imp.duplicate() auto_threshold_options = ( - threshold_method + " " + "dark" + " " + "stack" if do_3D else "" + threshold_method + " " + "dark" + " " + "stack" if do_3d else "" ) log.debug("Auto threshold options: %s" % auto_threshold_options)