From a80db3e83a1b9bd2135f1ab8cd8a1f76dad5106b Mon Sep 17 00:00:00 2001 From: "Christian Aurich (I2SE GmbH)" Date: Fri, 22 Jul 2016 12:03:25 +0200 Subject: [PATCH] fixing pylint error (line too long) --- eagle-bom.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eagle-bom.py b/eagle-bom.py index cbc8f4f..40cec63 100644 --- a/eagle-bom.py +++ b/eagle-bom.py @@ -104,7 +104,8 @@ def render(self, gfx): gfx.stroke() for circ in self.circs: gfx.new_sub_path() - log.debug("\tcircle at:" + str(circ[0][0]) + " / " + str(circ[0][1]) + " / " + str(circ[1])) + log.debug("\tcircle at:" + str(circ[0][0]) + " / " + + str(circ[0][1]) + " / " + str(circ[1])) gfx.arc(circ[0][0], circ[0][1], circ[1], 0, 2*math.pi) gfx.restore()