Commit 4453253b authored by Bharath Ramsundar's avatar Bharath Ramsundar
Browse files

Working on BindingPocket fixes

parent 6970d7ce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ def merge_overlapping_boxes(boxes, threshold=.8):
  list[CoordinateBox] of merged boxes. This list will have length less
  than or equal to the length of `boxes`.
  """
  outputs = boxes.copy()
  outputs = []
  for box in boxes:
    for other in boxes:
      if box == other: