Update lubimycztac metadata provider (fixes #3090)
This commit is contained in:
parent
ab2620a265
commit
bbc3219d31
|
@ -285,11 +285,13 @@ class LubimyCzytacParser:
|
||||||
|
|
||||||
def _parse_tags(self) -> List[str]:
|
def _parse_tags(self) -> List[str]:
|
||||||
tags = self._parse_xpath_node(xpath=LubimyCzytac.TAGS, take_first=False)
|
tags = self._parse_xpath_node(xpath=LubimyCzytac.TAGS, take_first=False)
|
||||||
|
if tags:
|
||||||
return [
|
return [
|
||||||
strip_accents(w.replace(", itd.", " itd."))
|
strip_accents(w.replace(", itd.", " itd."))
|
||||||
for w in tags
|
for w in tags
|
||||||
if isinstance(w, str)
|
if isinstance(w, str)
|
||||||
]
|
]
|
||||||
|
return None
|
||||||
|
|
||||||
def _parse_from_summary(self, attribute_name: str) -> Optional[str]:
|
def _parse_from_summary(self, attribute_name: str) -> Optional[str]:
|
||||||
value = None
|
value = None
|
||||||
|
|
Loading…
Reference in New Issue
Block a user