@@ -0,0 +1,16 @@
import datetime
def date_to_epoch(date_str: str) -> float:
split_date = date_str.split("-")
date = datetime.datetime(
int(split_date[0]),
int(split_date[1]),
int(split_date[2]),
0,
)
return date.timestamp()
The note is not visible to the blocked user.