various fixes for ACS subsystem
All checks were successful
EIVE/-/pipeline/head This commit looks good

This commit is contained in:
2024-01-25 10:22:04 +01:00
parent 202a824d31
commit 3d007c32a3
4 changed files with 32 additions and 29 deletions

View File

@ -171,7 +171,7 @@ if PERFORM_MGM_CALIBRATION:
def create_acs_ctrl_node() -> CmdTreeNode:
# Zip the two classes together into a dictionary
op_code_strs = [
getattr(OpCodes, key)[0] for key in dir(OpCodes) if not key.startswith("__")
getattr(OpCodes, key) for key in dir(OpCodes) if not key.startswith("__")
]
info_strs = [getattr(Info, key) for key in dir(OpCodes) if not key.startswith("__")]
combined_dict = dict(zip(op_code_strs, info_strs))