We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6004ccf commit 53507b5Copy full SHA for 53507b5
tests/test_end_to_end.py
@@ -22,7 +22,7 @@
22
23
def _normalize_html(html: str) -> str:
24
soup = bs4.BeautifulSoup(html, features="html.parser")
25
- html = soup.prettify() # type: ignore[assignment]
+ html = soup.prettify()
26
html = re.sub(r"\b(0x)[a-f0-9]+\b", r"\1...", html)
27
html = re.sub(r"^(Build Date UTC ?:).+", r"\1...", html, flags=re.MULTILINE)
28
html = re.sub(r"\b[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}\b", r"...", html)
0 commit comments