diff --git a/juriscraper/opinions/united_states/territories/visuper_p.py b/juriscraper/opinions/united_states/territories/visuper_p.py index 382cdbb50..67b979731 100644 --- a/juriscraper/opinions/united_states/territories/visuper_p.py +++ b/juriscraper/opinions/united_states/territories/visuper_p.py @@ -13,8 +13,13 @@ def __init__(self, *args, **kwargs): ) self.status = "Published" - def _process_html(self): - for row in self.html.xpath(".//tbody//tr"): + def _process_html(self) -> None: + """Parse HTML into case objects + + :return: None + """ + row_xpath = ".//tbody//tr[.//a[text() and not(@title='Summary')]]" + for row in self.html.xpath(row_xpath): ( case_name, date_filed,