Fix all errors and warnings

This commit is contained in:
Joakim Hellsén 2023-01-10 23:07:15 +01:00
commit 504f1c5fe6
No known key found for this signature in database
GPG key ID: C889E6DC5EDBB36D
7 changed files with 58 additions and 67 deletions

View file

@ -2,7 +2,7 @@ import os
import tempfile
from pathlib import Path
from reader import Feed, Reader, make_reader
from reader import Feed, Reader, make_reader # type: ignore
from discord_rss_bot.feeds import send_to_discord

View file

@ -3,7 +3,7 @@ import tempfile
from pathlib import Path
from typing import Iterable
from reader import EntrySearchResult, Feed, Reader, make_reader
from reader import EntrySearchResult, Feed, Reader, make_reader # type: ignore
from discord_rss_bot.search import create_html_for_search_results