diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-05-14 21:29:35 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-05-14 21:29:35 (GMT) |
| commit | b8efcd30537f04269738e6969376129f4ed88315 (patch) | |
| tree | cf0f4f2d12603ca85bc5f0b664bcd4883b85f436 /wasp/apps/clock.py | |
| parent | f07fb6d22a7124f945a29c2895cec87a69e08b37 (diff) | |
wasp: Even more docstrings
Diffstat (limited to 'wasp/apps/clock.py')
| -rw-r--r-- | wasp/apps/clock.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/wasp/apps/clock.py b/wasp/apps/clock.py index 4236d9a..f09f2d4 100644 --- a/wasp/apps/clock.py +++ b/wasp/apps/clock.py @@ -1,6 +1,12 @@ # SPDX-License-Identifier: LGPL-3.0-or-later # Copyright (C) 2020 Daniel Thompson +"""Digital clock +~~~~~~~~~~~~~~~~ + +Shows a time (as HH:MM) together with a battery meter and the date. +""" + import wasp import icons @@ -23,8 +29,6 @@ MONTH = 'JanFebMarAprMayJunJulAugSepOctNovDec' class ClockApp(): """Simple digital clock application. - - Shows a time (as HH:MM) together with a battery meter and the date. """ NAME = 'Clock' ICON = icons.clock |
