From 05c41be4d15ae9046021f4b5bdad27da3fa89a20 Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Tue, 24 Jul 2018 20:36:13 +0200 Subject: [PATCH] Remove or comment debugging outputs --- boxes/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/boxes/__init__.py b/boxes/__init__.py index e2e9b6e..7a001c4 100755 --- a/boxes/__init__.py +++ b/boxes/__init__.py @@ -572,7 +572,7 @@ class Boxes: lang = math.degrees(l / r_) if degrees < 0: lang = -lang - print(degrees, radius, l, lang, tabs, math.degrees(tabrad)) + #print(degrees, radius, l, lang, tabs, math.degrees(tabrad)) self.corner(lang/2., radius) for i in range(tabs-1): self.moveArc(math.degrees(tabrad), r_) @@ -1093,7 +1093,6 @@ class Boxes: width = lheight = 0.0 for line in text: (tx, ty, w, h, dx, dy) = self.ctx.text_extents(line) - print(tx, ty, w, h, dx, dy) lheight = max(lheight, h) width = max(width, w)