Remove print statements

This commit is contained in:
Joakim Hellsén 2023-01-17 01:38:07 +01:00
commit ace8d238bf
No known key found for this signature in database
GPG key ID: C889E6DC5EDBB36D
4 changed files with 0 additions and 16 deletions

View file

@ -30,7 +30,6 @@ def get_webhook_for_entry(custom_reader: Reader, entry: Entry) -> str:
try:
webhook_url = str(reader.get_tag(entry.feed_url, "webhook"))
except TagNotFoundError:
print(f"Webhook not found for feed {entry.feed_url}")
webhook_url = ""
return webhook_url