Files @ 50bc1497e971
Branch filter:

Location: copyleftconf-website-fork/pinaxcon/apps.py - annotation

Christopher Neugebauer
Fixes another thing
from importlib import import_module

from django.apps import AppConfig as BaseAppConfig


class AppConfig(BaseAppConfig):

    name = "pinaxcon"

    def ready(self):
        import_module("pinaxcon.receivers")