Forgetting `import datetime` — Python doesn't know what `datetime` is without it. - Writing `datetime.today()` instead of `datetime.date.today()` — the `today()` method lives on the `date` class inside the `datetime` module.