mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
8 lines
181 B
Python
8 lines
181 B
Python
from django import apps
|
|
|
|
|
|
class AppConfig(apps.AppConfig):
|
|
name = 'axes'
|
|
|
|
def ready(self):
|
|
from axes import signals # pylint: disable=unused-import,unused-variable
|