Skip to content

Commit

Permalink
changed some globals to locals in grab
Browse files Browse the repository at this point in the history
don't like the interaction between grab and other routines on calibration files
  • Loading branch information
trmrsh committed May 26, 2021
1 parent bd6a971 commit 6e0f11e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions hipercam/scripts/grab.py
Expand Up @@ -182,11 +182,11 @@ def grab(args=None):
cl.register("trim", Cline.GLOBAL, Cline.PROMPT)
cl.register("ncol", Cline.GLOBAL, Cline.HIDE)
cl.register("nrow", Cline.GLOBAL, Cline.HIDE)
cl.register("bias", Cline.GLOBAL, Cline.PROMPT)
cl.register("flat", Cline.GLOBAL, Cline.PROMPT)
cl.register("dark", Cline.GLOBAL, Cline.PROMPT)
cl.register("fmap", Cline.GLOBAL, Cline.PROMPT)
cl.register("fpair", Cline.GLOBAL, Cline.PROMPT)
cl.register("bias", Cline.LOCAL, Cline.PROMPT)
cl.register("flat", Cline.LOCAL, Cline.PROMPT)
cl.register("dark", Cline.LOCAL, Cline.PROMPT)
cl.register("fmap", Cline.LOCAL, Cline.PROMPT)
cl.register("fpair", Cline.LOCAL, Cline.PROMPT)
cl.register("nhalf", Cline.GLOBAL, Cline.HIDE)
cl.register("rmin", Cline.GLOBAL, Cline.HIDE)
cl.register("rmax", Cline.GLOBAL, Cline.HIDE)
Expand Down

0 comments on commit 6e0f11e

Please sign in to comment.