Add #noqa and #TODOs
This commit is contained in:
@ -34,7 +34,7 @@ def test_send_to_discord() -> None:
|
||||
|
||||
# Add tag to the feed and check if it is there.
|
||||
reader.set_tag(feed, "webhook", webhook_url) # type: ignore
|
||||
assert reader.get_tag(feed, "webhook") == webhook_url
|
||||
assert reader.get_tag(feed, "webhook") == webhook_url # type: ignore
|
||||
|
||||
# Send the feed to Discord.
|
||||
send_to_discord(custom_reader=reader, feed=feed, do_once=True)
|
||||
|
@ -35,7 +35,7 @@ def test_create_html_for_search_results() -> None:
|
||||
reader.update_search()
|
||||
|
||||
# Get the HTML for the search results.
|
||||
search_results: Iterable[EntrySearchResult] = reader.search_entries("a", feed=feed)
|
||||
search_results: Iterable[EntrySearchResult] = reader.search_entries("a", feed=feed) # type: ignore
|
||||
|
||||
# Create the HTML and check if it is not empty.
|
||||
search_html: str = create_html_for_search_results(search_results, reader)
|
||||
|
Reference in New Issue
Block a user