mirror of
https://github.com/jazzband/django-axes.git
synced 2026-05-11 00:53:12 +00:00
6 lines
195 B
Python
6 lines
195 B
Python
from __future__ import unicode_literals
|
|
|
|
try:
|
|
from unittest.mock import patch # pylint: disable=unused-import
|
|
except ImportError:
|
|
from mock import patch # pylint: disable=unused-import
|