removed redundant comment

This commit is contained in:
Charlie Miller 2024-01-03 13:48:48 +00:00 committed by GitHub
parent aa5885e92a
commit 655419a7f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,6 @@ def calculate_age(unix_timestamp: float) -> str:
>>> 2024 - int(calculate_age(2209202284))
2040
"""
# Convert date from milliseconds to seconds
birth_date = datetime.fromtimestamp(unix_timestamp, tz=UTC)
# Calculate the age