Skip to content

Commit

Permalink
Merge pull request #840 from kulpster85/patch-1
Browse files Browse the repository at this point in the history
#839 Visit Id naming smarts in get_visit_nrc_ta_image
  • Loading branch information
mperrin committed May 6, 2024
2 parents 03ede79 + d1405e7 commit 5a20c76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webbpsf/mast_wss.py
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ def get_visit_nrc_ta_image(visitid, verbose=True, kind='cal'):
"""

keywords = {
'visit_id': [visitid[1:]], # note: drop the initial character 'V'
'visit_id': [visitid.lstrip('V')], # note: drop the initial character 'V'
'exp_type': ['NRC_TACQ']
}

Expand Down

0 comments on commit 5a20c76

Please sign in to comment.