Removing commented stuff for pylama.
This commit is contained in:
parent
ecc97fa2a0
commit
2efb914292
|
@ -136,9 +136,8 @@ class Notifier:
|
||||||
|
|
||||||
def __format_message(self, item: FeedItem) -> str:
|
def __format_message(self, item: FeedItem) -> str:
|
||||||
return (
|
return (
|
||||||
|
# TODO: Return date when FeedItem starts to return formattable datetime object
|
||||||
f"<strong><a href=\"{item.url}\">{item.title}</a></strong>\n\n"
|
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)}"
|
f"{self.__sanitize_html(item.description)}"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue