Closed StokesMIDE closed 2 years ago
To ensure the correct schemata are loaded, idelib should add its own schema path to ebmlite.SCHEMA_PATH.
idelib
ebmlite.SCHEMA_PATH
One possible implementation is to add this to __init__.py:
__init__.py
import ebmlite if "{idelib}/schemata" not in ebmlite.SCHEMA_PATH: ebmlite.SCHEMA_PATH.insert(0, "{idelib}/schemata")
Being addressed in PR #121
To ensure the correct schemata are loaded,
idelib
should add its own schema path toebmlite.SCHEMA_PATH
.One possible implementation is to add this to
__init__.py
: