xml.etree: Fix tag param in __init__ (#10968)

This commit is contained in:
Avasam
2023-11-03 09:50:49 -04:00
committed by GitHub
parent 19650767da
commit 3a56e0034c
2 changed files with 5 additions and 3 deletions

View File

@@ -16,8 +16,10 @@ _T_co = TypeVar("_T_co", covariant=True)
# Comment from openpyxl.cell.rich_text.py
# Usually an Element() from either lxml or xml.etree (has a 'tag' element)
# lxml.etree._Element
# xml.etree.Element
class _HasTag(Protocol):
tag: Any # AnyOf[str, None, Callable[..., AnyOf[str, None]]]
tag: str
class _HasGet(Protocol[_T_co]):
def get(self, __value: str) -> _T_co | None: ...