From d2fbec077bbce235176cddf8b4e550798a2a87d2 Mon Sep 17 00:00:00 2001 From: pengtao Date: Wed, 16 Oct 2019 14:07:32 +0800 Subject: [PATCH] =?UTF-8?q?tap=20order=20=20=E6=95=B0=E6=8D=AE=E5=86=99?= =?UTF-8?q?=E5=85=A5mysql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- taptap/taptap_report.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/taptap/taptap_report.py b/taptap/taptap_report.py index 5dfe6fa..ba8c91b 100644 --- a/taptap/taptap_report.py +++ b/taptap/taptap_report.py @@ -26,7 +26,9 @@ class TapTapReport: def build_report(self): all = dict() for item in (self.day, self.bday): - all.update(self.split_order_data(item)) + b_d = self.split_order_data(item) + print(f"b_d={b_d}") + all.update(b_d) print(all)