Tyler from 'howchoo' made a really great article that helped me get a better idea of the Datetime Objects, link below
essentially, I just added the following to the end of both my datetime objects
.replace(tzinfo=pytz.utc)
Example:
import pytz
import datetime from datetime
date = datetime.now().replace(tzinfo=pytz.utc)