From 6bd978ebe12229b8edf232edaf0652501b708104 Mon Sep 17 00:00:00 2001 From: James Bowman Date: Mon, 4 Mar 2019 06:15:32 -0800 Subject: [PATCH] remove debug --- python/samples/i2cgui.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/samples/i2cgui.py b/python/samples/i2cgui.py index b832459..6b1f89f 100644 --- a/python/samples/i2cgui.py +++ b/python/samples/i2cgui.py @@ -234,7 +234,6 @@ class Frame(wx.Frame): def read(self, e): n = int(self.rxCount.GetValue()) if self.addr is not None: - print("read", n) self.start(1) r = self.sd.read(n) bb = struct.unpack("B"*n, r)