forked from MirrorHub/synapse
Correct annotation of _iterate_over_text
(#12860)
This commit is contained in:
parent
81d9f2a8e9
commit
e7c77a8750
2 changed files with 2 additions and 1 deletions
1
changelog.d/12860.misc
Normal file
1
changelog.d/12860.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Correct a type annotation in the URL preview source code.
|
|
@ -281,7 +281,7 @@ def parse_html_description(tree: "etree.Element") -> Optional[str]:
|
||||||
|
|
||||||
|
|
||||||
def _iterate_over_text(
|
def _iterate_over_text(
|
||||||
tree: "etree.Element", *tags_to_ignore: Iterable[Union[str, "etree.Comment"]]
|
tree: "etree.Element", *tags_to_ignore: Union[str, "etree.Comment"]
|
||||||
) -> Generator[str, None, None]:
|
) -> Generator[str, None, None]:
|
||||||
"""Iterate over the tree returning text nodes in a depth first fashion,
|
"""Iterate over the tree returning text nodes in a depth first fashion,
|
||||||
skipping text nodes inside certain tags.
|
skipping text nodes inside certain tags.
|
||||||
|
|
Loading…
Reference in a new issue