Skip to content

Commit 1e47b0f

Browse files
committed
Fix wrong type
1 parent a8abea3 commit 1e47b0f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

nova3/engines/jackett.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# VERSION: 4.5
1+
# VERSION: 4.6
22
# AUTHORS: Diego de las Heras ([email protected])
33
# CONTRIBUTORS: ukharley
44
# hannsen (github.com/hannsen)
@@ -170,7 +170,7 @@ def search_jackett_indexer(self, what: str, category: Union[List[str], None], in
170170
def toStr(s: Union[str, None]) -> str:
171171
return s if s is not None else ''
172172

173-
def getTextProp(e: Union[xml.etree.ElementTree.Element[str], None]) -> str:
173+
def getTextProp(e: Union[xml.etree.ElementTree.Element, None]) -> str:
174174
return toStr(e.text if e is not None else '')
175175

176176
# prepare jackett url

nova3/engines/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
eztv: 1.20
2-
jackett: 4.5
2+
jackett: 4.6
33
limetorrents: 4.12
44
piratebay: 3.8
55
solidtorrents: 2.6

0 commit comments

Comments
 (0)