From 2e755630253d66a96e8d0e1c0d3371de909c88b7 Mon Sep 17 00:00:00 2001 From: Norbert Litkowski Date: Tue, 27 Apr 2021 23:21:21 +0200 Subject: [PATCH] remove test code --- main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/main.py b/main.py index dfc9202..da56b90 100644 --- a/main.py +++ b/main.py @@ -74,7 +74,6 @@ def get_jurisdiction(text: str): m = re.search( r"laws? of the (?:(?:State of)|(?:Commonwealth of)) ([A-Z][a-z]+(?: [A-Z][a-z]+)?).+(?:(?: and)|[,.])", text) if m is not None: - print(m.group(1)) res = m.group(1).strip().replace(" ", "_") return res