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