From 655419a7f73ca4c1d4a0e4cbfeb8a648e7f00ab4 Mon Sep 17 00:00:00 2001 From: Charlie Miller <35689954+MarlieChiller@users.noreply.github.com> Date: Wed, 3 Jan 2024 13:48:48 +0000 Subject: [PATCH] removed redundant comment --- web_programming/get_top_billionaires.py | 1 - 1 file changed, 1 deletion(-) 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