Files @ 0f8f2b50804a
Branch filter:

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

Christopher Neugebauer
Improves the wording of the review 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")