Ensure that string returned by time_since contains integers not floats
@ -143,7 +143,7 @@ def time_since(dt: datetime) -> str:
total_seconds = difference.total_seconds()
minutes = total_seconds // 60
minutes = int(total_seconds // 60)
seconds = int(total_seconds % 60)
if minutes > 0: