masschallenge/django-accelerator

View on GitHub
accelerator/models/partner_judging_round_challenge.py

Summary

Maintainability
A
35 mins
Test Coverage
A
100%
import swapper

from accelerator_abstract.models import BasePartnerJudgingRoundChallenge


class PartnerJudgingRoundChallenge(BasePartnerJudgingRoundChallenge):
    class Meta(BasePartnerJudgingRoundChallenge.Meta):
        swappable = swapper.swappable_setting(
            BasePartnerJudgingRoundChallenge.Meta.app_label,
            "PartnerJudgingRoundChallenge")