labelbase/userprofile/apps.py
2023-08-11 23:22:19 +02:00

9 lines
225 B
Python

from django.apps import AppConfig
class UserprofileConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "userprofile"
def ready(self):
import userprofile.signals # noqa: F401