Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed May 4, 2023
1 parent 9bec665 commit 7cb1b97
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lxml-stubs/etree.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ _AnySmartStr = Union[
]
_TagName = Union[str, bytes, QName]
# _TagSelector also allows Element, Comment, ProcessingInstruction
_TagSelector = Union[str, bytes, QName, Collection[Any], Any] # really Collection[_TagSelector]
_TagSelector = Union[
str,
bytes,
QName,
Collection[Any], # really Collection[_TagSelector]
Any,
]
# XPath object - http://lxml.de/xpathxslt.html#xpath-return-values
_XPathObject = Union[
bool,
Expand Down

0 comments on commit 7cb1b97

Please sign in to comment.