From 70c21c4a9ca2c001f0e865bd11c7c9f5acc3b910 Mon Sep 17 00:00:00 2001 From: Marc Wrobel Date: Sat, 22 Jun 2024 17:57:49 +0200 Subject: [PATCH] Update src/libreoffice.py --- src/libreoffice.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libreoffice.py b/src/libreoffice.py index 27628dd4..aa177fe7 100644 --- a/src/libreoffice.py +++ b/src/libreoffice.py @@ -12,10 +12,8 @@ soup = BeautifulSoup(response.text, features="html5lib") for table in soup.find_all("table"): - for row in table.find_all("tr")[1:]: cells = row.find_all("td") - if len(cells) < 4: continue