diff options
author | embeddedt <42941056+embeddedt@users.noreply.github.com> | 2021-07-11 15:09:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-11 15:09:25 -0400 |
commit | ef41450ed87f4f4dd936b63349b5a0c9ce880618 (patch) | |
tree | bb07e231678aac214489e822c2b7e811a1de6b5c | |
parent | 5f6e07e57ff5d02c9010cc70c3d18f37b688aaa8 (diff) | |
download | lvgl-ef41450ed87f4f4dd936b63349b5a0c9ce880618.tar.gz lvgl-ef41450ed87f4f4dd936b63349b5a0c9ce880618.zip |
refactor(examples) drop JS-specific code from header.py
This logic was moved into the JS simulator itself
-rw-r--r-- | examples/header.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/examples/header.py b/examples/header.py index 449d090d0..7a9debeee 100644 --- a/examples/header.py +++ b/examples/header.py @@ -3,9 +3,4 @@ import lvgl as lv import usys as sys -# JS requires a special import -if sys.platform == 'javascript': - import imp - sys.path.append('https://raw.githubusercontent.com/lvgl/lv_binding_micropython/4c04dba836a5affcf86cef107b538e45278117ae/lib') - import display_driver |