From 2f27eaab44ecd644f4245cbf1f3aaac4e8db1be0 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Tue, 1 Mar 2022 16:59:50 -0800 Subject: [PATCH] bs4: expose bs4.PageElement (#7419) This is generally useful. It's also imported in the source without being used in bs4/__init__.py which in well maintained packages is a pretty good marker of intention to export Co-authored-by: hauntsaninja <> --- stubs/beautifulsoup4/bs4/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/beautifulsoup4/bs4/__init__.pyi b/stubs/beautifulsoup4/bs4/__init__.pyi index ebb01dbca..13bb3ec21 100644 --- a/stubs/beautifulsoup4/bs4/__init__.pyi +++ b/stubs/beautifulsoup4/bs4/__init__.pyi @@ -2,7 +2,7 @@ from _typeshed import Self, SupportsRead from typing import Any, Sequence from .builder import TreeBuilder -from .element import PageElement, SoupStrainer as SoupStrainer, Tag as Tag +from .element import PageElement as PageElement, SoupStrainer as SoupStrainer, Tag as Tag from .formatter import Formatter class GuessedAtParserWarning(UserWarning): ...