Remove unnecessary "type: ignore" comments

This commit is contained in:
2023-03-18 04:21:03 +01:00
parent 09abc0c93a
commit 0de093d704
3 changed files with 3 additions and 3 deletions

View File

@ -126,7 +126,7 @@ async def post_set_whitelist(
"""
clean_feed_url: str = feed_url.strip()
if whitelist_title:
reader.set_tag(clean_feed_url, "whitelist_title", [whitelist_title])
reader.set_tag(clean_feed_url, "whitelist_title", whitelist_title) # type: ignore
if whitelist_summary:
reader.set_tag(clean_feed_url, "whitelist_summary", whitelist_summary) # type: ignore
if whitelist_content: