Update beautifulsoup4 requirement from ==4.12.* to ==4.13.* (#4804)

* Update beautifulsoup4 requirement from ==4.12.* to ==4.13.*

Updates the requirements on [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/) to permit the latest version.

---
updated-dependencies:
- dependency-name: beautifulsoup4
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* Replace findAll with find_all

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Raphael Michel <michel@rami.io>
This commit is contained in:
dependabot[bot]
2025-02-05 17:39:23 +01:00
committed by GitHub
parent 5d56cd3917
commit 4e4e187a84
3 changed files with 3 additions and 3 deletions

View File

@@ -74,7 +74,7 @@ def extract_form_fields(soup):
continue
# textareas
for textarea in soup.findAll('textarea'):
for textarea in soup.find_all('textarea'):
if textarea['name'] in data:
if not isinstance(data[textarea['name']], list):
data[textarea['name']] = [data[textarea['name']]]