瀏覽代碼

style: remove unsed log info

icecraft 1 年之前
父節點
當前提交
c200effc3a
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      magic_pdf/model/magic_model.py

+ 0 - 2
magic_pdf/model/magic_model.py

@@ -618,8 +618,6 @@ class MagicModel:
             )
         )
 
-        print(len(subjects), len(objects))
-
         subjects.sort(key=lambda x: x['bbox'][0] ** 2 + x['bbox'][1] ** 2)
         objects.sort(key=lambda x: x['bbox'][0] ** 2 + x['bbox'][1] ** 2)
         dis = [[float('inf')] * len(subjects) for _ in range(len(objects))]