7 lines
162 B
Python
7 lines
162 B
Python
import django
|
|
|
|
if django.VERSION < (3, 0):
|
|
from django.utils.lru_cache import lru_cache # noqa: F401
|
|
else:
|
|
from functools import lru_cache # noqa: F401
|