diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2021-09-09 10:25:13 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2021-09-09 10:25:13 +0200 |
| commit | 4b0313cf00c2fe3c4a968a8f9897ef5dc9fab88c (patch) | |
| tree | bcd4cb45acd49776bb63a0da9ccdf6138cf9c2a0 | |
| parent | 09ef12b3961db93bd87290e6c0fa02b4c2da561e (diff) | |
| download | geldschieberbot-4b0313cf00c2fe3c4a968a8f9897ef5dc9fab88c.tar.gz geldschieberbot-4b0313cf00c2fe3c4a968a8f9897ef5dc9fab88c.zip | |
[geldschieberbot] doc strings must be beneath the thing they describe
| -rw-r--r-- | geldschieberbot.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/geldschieberbot.py b/geldschieberbot.py index 5f13b6f..2cd850c 100644 --- a/geldschieberbot.py +++ b/geldschieberbot.py @@ -58,12 +58,15 @@ group_id = os.environ["GSB_GROUP_ID"] send_cmd = os.environ["GSB_SEND_CMD"] group_send_cmd = send_cmd + group_id -"""Run without changing the stored state""" + dry_run = False -"""Run without sending messages""" +"""Run without changing the stored state""" + quiet = False -"""Should changes be recorded""" +"""Run without sending messages""" + record_changes = True +"""Should changes be recorded""" def record(recipient, donor, amount): |
