Last active
October 31, 2020 16:22
-
-
Save goujonbe/e21c59cdc339fc2ba536d0d10ec95367 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_time_since_subscription(subscription_date: datetime.datetime) -> int: | |
current_date = datetime.datetime.utcnow() | |
return (current_date - subscription_date).days |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment