From a408bb05a4c4e4eac10c5ee7935f9edf01e99948 Mon Sep 17 00:00:00 2001 From: BlueFox Date: Sat, 17 May 2025 00:19:12 +0200 Subject: [PATCH] Fixed small typo --- tasmotonov.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmotonov.py b/tasmotonov.py index bc18ccd..da4c530 100755 --- a/tasmotonov.py +++ b/tasmotonov.py @@ -30,7 +30,7 @@ parser = argparse.ArgumentParser( prog='Tasmotonov - simply toggle multiple tasmota lights', formatter_class=argparse.RawDescriptionHelpFormatter, description='A very simple script which allows you to turn on/off multiple tasmota devices specified.', - epilog='Info: if you choose a file as source, this files needs to contain the addresses of the tasmota devices either comma-separated, semicolon-separated, or newline-separated!\n\n © Benjamin Burkhardt, 2025') + epilog='Info: if you choose a file as source, this files needs to contain the addresses of the tasmota devices either comma-separated, semicolon-separated, or newline-separated!\n\n© Benjamin Burkhardt, 2025') parser.add_argument('source', help='Select either to read the adresses (of the devices) from a "file" or from "inline"', choices=['file', 'inline']) parser.add_argument('data', help='Either the path to the file, or a comma- or semicolon-separated list of tasmota adresses.')