14 lines
168 B
Python
14 lines
168 B
Python
import time
|
|
|
|
from untitled import ui
|
|
|
|
|
|
class App:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def run(self):
|
|
ui.clear()
|
|
time.sleep(1)
|
|
ui.splash()
|