apps: calc: Move the copyright header to the top of the file.
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
This commit is contained in:
parent
a1ee40016d
commit
77b693414e
1 changed files with 10 additions and 9 deletions
|
@ -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
|
# 2-bit RLE, generated from res/calc.png, 413 bytes
|
||||||
calc = (
|
calc = (
|
||||||
b'\x02'
|
b'\x02'
|
||||||
|
@ -30,15 +40,6 @@ calc = (
|
||||||
b'XAA?\tV?\x0eP(')
|
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():
|
class CalculatorApp():
|
||||||
NAME = 'Calc'
|
NAME = 'Calc'
|
||||||
ICON = calc
|
ICON = calc
|
||||||
|
|
Loading…
Add table
Reference in a new issue