prep v5.2.0
All checks were successful
EIVE/-/pipeline/head This commit looks good

This commit is contained in:
2023-07-13 11:30:43 +02:00
parent 9be81f1725
commit 2153aa2842
9 changed files with 7 additions and 11 deletions

View File

@ -49,7 +49,7 @@ MGM_SEL_DICT = {
def handle_mgm_cmd(q: DefaultPusQueueHelper, op_code: str):
print("Please select the MGM Device")
for (k, v) in MGM_SEL_DICT.items():
for k, v in MGM_SEL_DICT.items():
print(f"{k}: {v[0]}")
sel_idx = int(input("Select MGM device by index: "))
mgm_info = MGM_SEL_DICT[MgmSel(sel_idx)]