Removing commented stuff for pylama.
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Alexey Skobkin 2022-07-09 23:53:04 +03:00
parent ecc97fa2a0
commit 2efb914292
No known key found for this signature in database
GPG Key ID: 5D5CEF6F221278E7
1 changed files with 1 additions and 2 deletions

View File

@ -136,9 +136,8 @@ class Notifier:
def __format_message(self, item: FeedItem) -> str:
return (
# TODO: Return date when FeedItem starts to return formattable datetime object
f"<strong><a href=\"{item.url}\">{item.title}</a></strong>\n\n"
# TODO: format properly when FeedItem starts to return proper datetime object
#f"{item.date}\n"
f"{self.__sanitize_html(item.description)}"
)