Remove debug statements

This commit is contained in:
Vinayak Mehta
2018-11-22 05:42:10 +05:30
parent 123227aa8c
commit 378408a271
-2
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):