Files @ 0b0b679d1855
Branch filter:

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

Brett Smith
Remove unwanted dependencies.

This doesn't remove all trace of them but it's enough to avoid installing
them and still be able to see the front page.
from importlib import import_module

from django.apps import AppConfig as BaseAppConfig


class AppConfig(BaseAppConfig):

    name = "pinaxcon"

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