Skip to content
Snippets Groups Projects
Verified Commit 0c6690a8 authored by dos's avatar dos
Browse files

simulator: Put fakes first into path

Lets the bl00mbox fake be imported in the simulator.
parent f0a2358d
No related branches found
No related tags found
No related merge requests found
Pipeline #8859 failed
...@@ -54,9 +54,9 @@ class UnderscoreFinder(importlib.abc.MetaPathFinder): ...@@ -54,9 +54,9 @@ class UnderscoreFinder(importlib.abc.MetaPathFinder):
# sys.meta_path.insert(0, Hook()) # sys.meta_path.insert(0, Hook())
sys.path = [ sys.path = [
os.path.join(projectpath, "sim", "fakes"),
os.path.join(projectpath, "python_payload"), os.path.join(projectpath, "python_payload"),
os.path.join(projectpath, "components", "micropython", "frozen"), os.path.join(projectpath, "components", "micropython", "frozen"),
os.path.join(projectpath, "sim", "fakes"),
] ]
builtin = BuiltinImporter() builtin = BuiltinImporter()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment