Fixed Printing of OTP Codes

This commit is contained in:
2025-10-27 12:21:33 -04:00
parent e63b08efe5
commit f7ae588502
+3 -1
View File
@@ -228,7 +228,9 @@ def menu_otp(api: AirlockAPIWrapper):
if choice == "1":
otp_list = generate(api)
print(colorText(otp_list,"green"))
print(colorText("Requested Codes:", "green"))
for key, value in otp_list.items():
print(colorText(f"{key} | {value}","green"))
elif choice == "2":
otp_activities_by_agent(api)
elif choice == "3":