From 7bd3ae84700a9ecc2573d38449befac961c48926 Mon Sep 17 00:00:00 2001 From: Akio Taniguchi Date: Sat, 6 Jul 2024 12:19:38 +0000 Subject: [PATCH] #164 Fix missing conditional branches for X/Y scan --- decode/qlook.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/decode/qlook.py b/decode/qlook.py index ad94cdc..91526aa 100644 --- a/decode/qlook.py +++ b/decode/qlook.py @@ -78,6 +78,12 @@ def auto(dems: Path, /, **options: Any) -> Path: if "still" in obs: return still(dems, **options) + if "xscan" in obs: + return xscan(dems, **options) + + if "yscan" in obs: + return yscan(dems, **options) + if "zscan" in obs: return zscan(dems, **options)