Removed some debug prints

This commit is contained in:
Rob McMullen 2017-04-14 13:47:53 -07:00
parent 136b55e831
commit 184f9ac73d
2 changed files with 0 additions and 3 deletions

View File

@ -49,9 +49,7 @@ class SegmentParser(object):
json. Once a version gets out in the wild and additional attributes are
added to a segment, a default value should be applied here.
"""
print "UPDATING!!!!", state
self.__dict__.update(state)
print self.segments
def parse(self):
r = self.segment_data

View File

@ -293,7 +293,6 @@ class SegmentData(object):
d = self.data.base.copy()
s = self.style.base.copy()
start, end = self.byte_bounds_offset()
print "copy: start, end =", start, end
copy = SegmentData(d[start:end], s[start:end])
return copy