From 54500ab38adcde7740a449d2bf88271b0700e018 Mon Sep 17 00:00:00 2001 From: Joshua Hoskins Date: Tue, 29 Aug 2023 10:06:07 -0400 Subject: [PATCH] Add fix for holog where ant dictionary entry must be created from ant_id.... --- src/astrohack/holog.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/astrohack/holog.py b/src/astrohack/holog.py index df81327e..c9d16f0e 100644 --- a/src/astrohack/holog.py +++ b/src/astrohack/holog.py @@ -105,6 +105,9 @@ def holog( function_name = inspect.stack()[CURRENT_FUNCTION].function + # Shouldn't have to do this but the name changes ant_id->ant for some reason. Fix later. + holog_params['ant']=ant_id + ######### Parameter Checking ######### holog_params = _check_holog_params(function_name=function_name, holog_params=holog_params)