mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +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")
|