Fix a few Intellij IDEA warnings

This commit is contained in:
Marc Wrobel
2023-12-30 10:47:06 +01:00
parent f49e3dff15
commit b32cb09494
7 changed files with 19 additions and 20 deletions

View File

@@ -9,7 +9,7 @@ there is no entry for GA of version 18.0.18 and older."""
product = endoflife.Product("plesk")
print(f"::group::{product.name}")
response = http.fetch_url("https://docs.plesk.com/release-notes/obsidian/change-log")
soup = BeautifulSoup(response.text, features="html5lib")
soup = BeautifulSoup(response.text, features="html5lib")
for release in soup.find_all("div", class_="changelog-entry--obsidian"):
version = release.h2.text.strip()