From f56cf0e6d1e9d4b6ce5617c37d9c8030816dd767 Mon Sep 17 00:00:00 2001 From: Daniel Thompson Date: Thu, 21 May 2020 20:58:02 +0100 Subject: [PATCH] Remove spurious copy of hello.py --- hello.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 hello.py 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)