79718078

Date: 2025-07-29 03:54:21
Score: 0.5
Natty:
Report link
def _generate_random_date(since: datetime, until: datetime):
    delta = until - since
    random_seconds = random.uniform(0, delta.total_seconds())
    return since + timedelta(seconds=random_seconds)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mourad Qqch