Files
MicroPythonOS/internal_filesystem/apps/com.micropythonos.errortest/assets/error.py
T
Thomas Farstrike b6869d592a Add more tests
2025-11-18 15:09:12 +01:00

11 lines
267 B
Python

from mpos.apps import ActivityDoesntExist # should fail here
class Error(Activity):
def onCreate(self):
screen = lv.obj()
label = lv.label(screen)
label.set_text('Hello World!')
label.center()
self.setContentView(screen)