I have a user's server join date, I want to see if their join date is over a month ago. If it is, continue.
today = datetime.datetime.now()
lastMonth = today - datetime.timedelta(days=1)
if user.joined_at > lastMonth:
print(user.joined_at)
The error it gives me.
if user.joined_at > lastMonth:
TypeError: can't compare offset-naive and offset-aware datetimes`