浏览代码

updated regex of defendant

Harsh Parikh 2 年之前
父节点
当前提交
74c8742dea
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      expert_report/parse_expert_pdf_utils.py

+ 1 - 1
expert_report/parse_expert_pdf_utils.py

@@ -75,7 +75,7 @@ def defendent_extraction(content):
     """
     Extracts the defendant from the document
     """
-    regex = r"(\w.*?)\n\s?\n?\s\s?(Defendants|Patent\sOwners?)"
+    regex = r"(\w.*?)\n\s?\n?\s?\s?(Defendants|Patent\sOwners?)"
     try:
         return re.search(regex, content).group(1)
     except: