Coverage for crunch/django/app/apps.py: 100.00%

6 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2023-10-01 13:43 +0000

1from django.apps import AppConfig 

2 

3class CrunchConfig(AppConfig): 

4 name = "crunch" 

5 

6 def ready(self): 

7 super().ready() 

8 

9 # needed because the autodiscover doesn't work unless admin.py is in top directory of app 

10 from . import admin, tokens