Files @ 2453aa60244a
Branch filter:

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

Christopher Neugebauer
Remove those monkey patches again
from importlib import import_module

from django.apps import AppConfig as BaseAppConfig


class AppConfig(BaseAppConfig):

    name = "pinaxcon"

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