8 lines
157 B
Python
8 lines
157 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class RadioConfig(AppConfig):
|
|
name = 'radio'
|
|
|
|
def ready(self):
|
|
from .signals import update_sorted_fields
|