mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-05-15 11:03:13 +00:00
9 lines
173 B
Python
9 lines
173 B
Python
|
|
from configurations import Configuration
|
||
|
|
|
||
|
|
|
||
|
|
class ErrorConfiguration(Configuration):
|
||
|
|
|
||
|
|
@classmethod
|
||
|
|
def pre_setup(cls):
|
||
|
|
raise ValueError("Error in pre_setup")
|