1
0
Fork 0

Remove spurious copy of hello.py

pull/34/head v0.2
Daniel Thompson 2020-05-21 20:58:02 +01:00
parent e49a67f0f3
commit f56cf0e6d1
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
# SPDX-License-Identifier: MY-LICENSE
# Copyright (C) YEAR(S), AUTHOR
import wasp
class HelloApp():
"""A hello world application for wasp-os."""
NAME = "Hello"
def __init__(self, msg="Hello, world!"):
self.msg = msg
def foreground(self):
self._draw()
def _draw(self):
draw = wasp.watch.drawable
draw.fill()
draw.string(self.msg, 0, 108, width=240)