evennia/evennia/utils/tests/data/broken_script.py
2022-10-31 20:43:27 +01:00

11 lines
274 B
Python

"""
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):
pass