fix typing

This commit is contained in:
jxxghp
2023-06-06 10:31:30 +08:00
parent 774af91e3a
commit cc91177b92
10 changed files with 74 additions and 31 deletions

View File

@ -61,7 +61,7 @@ class SearchChain(_ChainBase):
else:
_match_torrents = torrents
# 过滤种子
result = self.run_module("filter_torrents", torrent_list=_match_torrents)
result: List[TorrentInfo] = self.run_module("filter_torrents", torrent_list=_match_torrents)
if result is not None:
_match_torrents = result
if not _match_torrents: