fix Callable import

The ability to import from `collections` was removed in 3.10.
This commit is contained in:
Josh 2021-10-07 15:11:51 -05:00
parent 55981ec128
commit 8f4f24f88c

View file

@ -1,6 +1,6 @@
import secrets
import uuid
from collections import Callable
from collections.abc import Callable
from django.conf import settings
from django.core.exceptions import ValidationError