From 6739a84d7c790133b269339313a39730bf2b0bb5 Mon Sep 17 00:00:00 2001 From: Julian Stirling Date: Wed, 6 Aug 2025 14:44:48 +0000 Subject: [PATCH] Apply suggestions from code review of branch yet-another-smart-scan-refactor Co-authored-by: Joe Knapper --- src/openflexure_microscope_server/stitching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openflexure_microscope_server/stitching.py b/src/openflexure_microscope_server/stitching.py index d5706915..ba423941 100644 --- a/src/openflexure_microscope_server/stitching.py +++ b/src/openflexure_microscope_server/stitching.py @@ -1,7 +1,7 @@ """Communicate with OpenFlexure Stitching to perform stitches for scans. This includes both live stitching and final stitching. This is done via subprocess -to call openflexure-stitching over CLI. This cannot be done via Threading dut to the +to call openflexure-stitching over CLI. This cannot be done via Threading due to the CPU intensity of stitching causing scanning problems due to the Python Global Interpreter Lock (GIL). May be possible to shift to multiprocessing int the future. """