We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b49112a commit 6f1cb01Copy full SHA for 6f1cb01
demosys/effects/managers.py
@@ -65,6 +65,8 @@ def pre_load(self):
65
Initialize the effect that should run.
66
"""
67
effect_list = [cfg.cls() for name, cfg in effects.effects.items()]
68
+ if not effect_list:
69
+ raise ValueError("settings.EFFECTS list is empty. No effect to run.")
70
71
# If an effect was specified in the initializer, find it
72
if self.effect_module:
0 commit comments