Add #noqa and #TODOs

This commit is contained in:
2022-12-19 17:24:29 +01:00
parent 372c5bb3e7
commit b7d786e2c7
3 changed files with 10 additions and 5 deletions

View File

@ -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)