10 lines
240 B
Python
10 lines
240 B
Python
|
from json import dumps as json_dumps
|
||
|
from os.path import join
|
||
|
from pathlib import Path
|
||
|
|
||
|
from bundlewrap.metadata import atomic
|
||
|
|
||
|
for node in Path(join(repo_path, "nodes")).rglob("*.py"):
|
||
|
with open(node, 'r') as f:
|
||
|
exec(f.read())
|