Remove module docstring

This commit is contained in:
2023-01-10 19:28:22 +01:00
parent cb353dcd43
commit d4c47aa729
4 changed files with 0 additions and 68 deletions

View File

@ -1,26 +1,3 @@
"""
Functions:
add_feed()
Add a feed to the reader. This also updates the feed.
check_feed()
Check a single feed.
check_feeds()
Check all feeds.
send_to_discord()
Send entries to Discord.
update_feed()
Update a feed.
Classes:
IfFeedError
Used in add_feed() and update_feed(). If an error, it will return IfFeedError with error=True.
If no error, it will return IfFeedError with error=False.
Exceptions:
NoWebhookFoundError
Used in send_to_discord(). If no webhook found, it will raise NoWebhookFoundError.
"""
from typing import Iterable
from discord_webhook import DiscordWebhook