diff options
Diffstat (limited to 'split-csv.py')
| -rw-r--r-- | split-csv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/split-csv.py b/split-csv.py index 2db45d85..e7c12883 100644 --- a/split-csv.py +++ b/split-csv.py @@ -9,7 +9,7 @@ import click @click.command() @click.option('--count', '-c', default=2, help='Number of subdivisions.') -@click.option('--has_keys/--has_no_keys', '-k', default=False, help='Whether to split off the keys.') +@click.option('--has_keys/--no_keys', '-k', default=False, help='Whether to split off the keys.') @click.option('--shuffle/--no_shuffle', default=False, help='Whether to shuffle.') @click.argument('filename') def split_csv(count, has_keys, shuffle, filename): |
