From 9bf834148f0c82c90e134f829d33992fcfd9a691 Mon Sep 17 00:00:00 2001 From: Enrique Barcelli Date: Mon, 17 Mar 2025 08:04:18 +0800 Subject: [PATCH] Fix typo --- extract_tickets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extract_tickets.py b/extract_tickets.py index d33a386..fdf4a6a 100644 --- a/extract_tickets.py +++ b/extract_tickets.py @@ -7,7 +7,7 @@ import base64 def extract_tickets(): from_date = str(input('From date [YYYY-MM-DD]: ') or "") - to_date = str(input('To date YYYY-MM-DD]: ') or "") + to_date = str(input('To date [YYYY-MM-DD]: ') or "") url = base_url + "api/Account/Authenticate/" payload = json.dumps({ "tenancyName": api_tenancy_name,