diff --git a/utils/table_parser.py b/utils/table_parser.py index faf2e50d..0e8592e5 100644 --- a/utils/table_parser.py +++ b/utils/table_parser.py @@ -14,7 +14,7 @@ def __init__(self): self.rows = [] self.capture_next_row_as_title = True - def handle_starttag(self, tag, attrs): + def handle_starttag(self, tag, _attrs): if tag == "table": self.in_table = True elif tag == "thead":