diff options
| author | Yuval Adam <_@yuv.al> | 2021-05-13 20:18:24 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2021-05-13 20:18:24 +0300 |
| commit | 22014491191fc1a958809db64783d3e610321c95 (patch) | |
| tree | 32e9f192e1dd4c0d1e46834859e503f7ce5a4db8 | |
| parent | 123d2ee0f1225a6ce7043a9755f06f85a467feae (diff) | |
Small cleanup
| -rw-r--r-- | alarmpy.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -102,11 +102,11 @@ class Alarm(object): @click.option( "--routine-delay", default=60 * 5, help="Routine message delay in seconds" ) -@click.option("--alarm-id", is_flag=True, help="Print alarm ID") +@click.option("--alarm-id", is_flag=True, help="Print alarm IDs") @click.option("--repeat-alarms", is_flag=True, help="Do not suppress ongoing alarms") def alarm(**kwargs): Alarm(**kwargs).start() if __name__ == "__main__": - alarm() # pylint: disable=no-value-for-parameter + alarm() |
