From 2936897c6f23ea149a9a95f54bc274593659d0f9 Mon Sep 17 00:00:00 2001 From: Dan Dembinski Date: Thu, 20 Jun 2019 16:38:13 -0400 Subject: [PATCH] Pulls in Shipping Costs and adds them to column D in the report file. --- main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/main.py b/main.py index 2d609c8..dd1a32b 100644 --- a/main.py +++ b/main.py @@ -135,7 +135,6 @@ def Run_Report(ticket, URL, HOST, REPORT_FIELDS, ws, wb): y = bs(getShipping, "lxml") for w in y.find_all('fval'): shippingcost.append(float(w.text)) - print(shippingcost) # Add Shipping Charge column. Set header and make bold ws.insert_cols(4)