You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
Fix import
This commit is contained in:
@@ -6,11 +6,6 @@ import os
|
||||
import time
|
||||
import _thread
|
||||
|
||||
try:
|
||||
import zipfile
|
||||
except ImportError:
|
||||
print("import zipfile failed, installation won't work!")
|
||||
|
||||
from mpos.apps import Activity, Intent
|
||||
import mpos.ui
|
||||
from mpos.package_manager import PackageManager
|
||||
|
||||
@@ -1,6 +1,11 @@
|
||||
import os
|
||||
import mpos.apps
|
||||
|
||||
try:
|
||||
import zipfile
|
||||
except ImportError:
|
||||
print("import zipfile failed, installation won't work!")
|
||||
|
||||
'''
|
||||
Initialized at boot.
|
||||
Typical users: appstore, launcher
|
||||
|
||||
Reference in New Issue
Block a user