mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-04-13 11:41:00 +00:00
8 lines
223 B
Python
8 lines
223 B
Python
from .base import Base
|
|
|
|
|
|
class Inheritance(Base):
|
|
|
|
def TEMPLATE_CONTEXT_PROCESSORS(self):
|
|
return tuple(super(Inheritance, self).TEMPLATE_CONTEXT_PROCESSORS) + (
|
|
'tests.settings.base.test_callback',)
|