Files @ 6ee11694e2ce
Branch filter:

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

Christopher Neugebauer
Revert "Update monkey_patch.py"

This reverts commit fb55f88cc74ebb3135ba0b7323cc036ef4e88311.
from importlib import import_module

from django.apps import AppConfig as BaseAppConfig


class AppConfig(BaseAppConfig):

    name = "pinaxcon"

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