fix(autorenewal): remove duplicated response handling in toggle_autorenewal

This commit is contained in:
2026-06-04 13:44:09 +07:00
parent 4c5a16a3ca
commit 9552813f16
2 changed files with 1 additions and 17 deletions

View File

@@ -66,7 +66,7 @@ def main():
gross_amount = args.amount * (1 + commission_rate)
commission = gross_amount - args.amount
print(f"customer pays fee:")
print("customer pays fee:")
print(f" Сумма заказа: {args.amount} RUB")
print(f" Комиссия: {commission:.2f} RUB")
print(f" Итого к оплате: {gross_amount:.2f} RUB")