summaryrefslogtreecommitdiff
path: root/hello.py
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-05-21 19:58:02 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-05-21 19:58:02 (GMT)
commitf56cf0e6d1e9d4b6ce5617c37d9c8030816dd767 (patch)
tree9609383d3b413ecec714058a9dce93a1a13dcbaa /hello.py
parente49a67f0f39c6867cb54367181e7d150024b0c74 (diff)
Remove spurious copy of hello.py
Diffstat (limited to 'hello.py')
-rw-r--r--hello.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/hello.py b/hello.py
deleted file mode 100644
index 586082a..0000000
--- a/hello.py
+++ /dev/null
@@ -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)