add docstring to broken script module

This commit is contained in:
InspectorCaracal 2022-10-28 09:44:11 -06:00
parent d1981bd15b
commit d40dfefc44

View file

@ -1,3 +1,9 @@
"""
Defines a script module with a broken import, to catch the specific error case
in loading global scripts where the module can be parsed but has broken
dependencies.
"""
from evennia import nonexistent_module, DefaultScript
class BrokenScript(DefaultScript):