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