File: apps.py

package info (click to toggle)
python-django-waffle 4.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 684 kB
  • sloc: python: 3,266; makefile: 139; sh: 39; javascript: 34
file content (10 lines) | stat: -rw-r--r-- 250 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
from django.apps import AppConfig


class WaffleConfig(AppConfig):
    name = 'waffle'
    verbose_name = 'django-waffle'
    default_auto_field = 'django.db.models.AutoField'

    def ready(self) -> None:
        import waffle.signals  # noqa: F401