Skip to content

Commit

Permalink
#164 Fix missing conditional branches for X/Y scan
Browse files Browse the repository at this point in the history
  • Loading branch information
astropenguin committed Jul 6, 2024
1 parent 6e8c908 commit 7bd3ae8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions decode/qlook.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 7bd3ae8

Please sign in to comment.