masschallenge/django-accelerator

View on GitHub
accelerator/models/partner_judging_instructions.py

Summary

Maintainability
A
50 mins
Test Coverage
A
100%
from __future__ import unicode_literals

import swapper

from accelerator_abstract.models import BasePartnerJudgingInstructions


class PartnerJudgingInstructions(BasePartnerJudgingInstructions):
    class Meta(BasePartnerJudgingInstructions.Meta):
        swappable = swapper.swappable_setting(
            BasePartnerJudgingInstructions.Meta.app_label,
            "PartnerJudgingInstructions")