diff --git a/web_programming/get_top_billionaires.py b/web_programming/get_top_billionaires.py index 41da95a00..1b27c9379 100644 --- a/web_programming/get_top_billionaires.py +++ b/web_programming/get_top_billionaires.py @@ -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