From 5f0709ccea5a9f6a92d0c71383d1bdf181af0920 Mon Sep 17 00:00:00 2001 From: Leon Jacobs Date: Mon, 10 Oct 2016 12:24:48 +0200 Subject: [PATCH] Remove unused `--full` argument. --- ooktools/console.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ooktools/console.py b/ooktools/console.py index 555a65c..f05b038 100644 --- a/ooktools/console.py +++ b/ooktools/console.py @@ -229,11 +229,9 @@ def binary(frequency, prefix, suffix, baud, repeat, data, full): help='Frequency to use.') @click.option('--baud', '-b', default=4800, show_default=True, help='Baud rate to use.') -@click.option('--full', '-f', is_flag=True, default=False, show_default=True, - help='Is data a full bitstring.') @click.option('--repeat', '-r', default=25, show_default=True, help='# of times to repeat transmission.') -def hexstring(frequency, baud, repeat, data, full): +def hexstring(frequency, baud, repeat, data): """ Send hex string. """