From 77b693414e3882e8addba0635e69621074843890 Mon Sep 17 00:00:00 2001 From: Daniel Thompson Date: Mon, 28 Dec 2020 14:20:17 +0000 Subject: apps: calc: Move the copyright header to the top of the file. Signed-off-by: Daniel Thompson diff --git a/wasp/apps/calc.py b/wasp/apps/calc.py index 8dddf57..a7293d9 100644 --- a/wasp/apps/calc.py +++ b/wasp/apps/calc.py @@ -1,3 +1,13 @@ +# SPDX-License-Identifier: LGPL-3.0-or-later +# Copyright (C) 2020 Johannes Wache +"""Calculator application + +This is a simple calculator app that uses the build-in eval() function to +compute the solution. +""" + +import wasp, fonts + # 2-bit RLE, generated from res/calc.png, 413 bytes calc = ( b'\x02' @@ -30,15 +40,6 @@ calc = ( b'XAA?\tV?\x0eP(') -# SPDX-License-Identifier: LGPL-3.0-or-latesettingsr -# Copyright (C) 2020 Johannes Wache -"""Calculator application - -This is a simple calculator app that uses the build-in eval() function to compute the solution for an equation. -""" - -import wasp, fonts - class CalculatorApp(): NAME = 'Calc' ICON = calc -- cgit v0.10.2