project-callisto/callisto-core

View on GitHub
callisto_core/wizard_builder/model_helpers.py

Summary

Maintainability
A
0 mins
Test Coverage
class ProxyQuestion:
    def __init__(self, *args, **kwargs):
        self._meta.get_field("type").default = self.proxy_name
        super().__init__(*args, **kwargs)

    class Meta:
        proxy = True