mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-13 10:04:15 +00:00
This allows importing user-created files and getting code completion for those imports. This is done by mirroring the dexie-based file system used by the editor to the emscripten based file system used by pyodide. In the future, ideally we would have some sort of shared file system, but this works for now. Note: completing `from ` doesn't list user files/modules because of filters in the pybricks-jedi python package but completing `from my_file import ` does work as expected.