From 378408a271309d7a4034d08d21ffb0b81557adc2 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Thu, 22 Nov 2018 05:42:10 +0530 Subject: [PATCH] Remove debug statements --- camelot/core.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/camelot/core.py b/camelot/core.py index 66d1c28..f50f77b 100644 --- a/camelot/core.py +++ b/camelot/core.py @@ -61,10 +61,8 @@ class TextEdges(object): x_coord = self.get_x_coord(textline, align) idx = self.find_textedge(x_coord, align) if idx is None: - print('adding') self.add_textedge(textline, align) else: - print('updating') self._textedges[align][idx].update_coords(x_coord, textline.y0) def generate_textedges(self, textlines):