Repair path to schema bundle

This commit is contained in:
Tony Garnock-Jones 2021-08-19 12:59:58 -04:00
parent 29fe7d1d97
commit 3e538df711
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@ def __load():
from preserves.schema import load_schema_file
import pathlib
for (n, ns) in load_schema_file(pathlib.Path(__file__).parent /
'../../../syndicate-protocols/schema-bundle.bin')._items().items():
'../../syndicate-protocols/schema-bundle.bin')._items().items():
globals()[n] = ns
__load()