Remove debug statements

pull/2/head
Vinayak Mehta 2018-11-22 05:42:10 +05:30
parent 123227aa8c
commit 378408a271
1 changed files with 0 additions and 2 deletions

View File

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