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):