From a070cd45d4d32d5c51c8670e074055e730733320 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 29 Dec 2020 06:38:19 +1100 Subject: [PATCH] docs: fix simple typo, arparse -> argparse There is a small typo in scripts/12_csv_split.py. Should read `argparse` rather than `arparse`. --- scripts/12_csv_split.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/12_csv_split.py b/scripts/12_csv_split.py index 43ed1ee..a3996b0 100755 --- a/scripts/12_csv_split.py +++ b/scripts/12_csv_split.py @@ -33,7 +33,7 @@ def get_arguments(): """Grab user supplied arguments using the argparse library.""" - # Use arparse to get command line arguments + # Use argparse to get command line arguments parser = argparse.ArgumentParser() parser.add_argument("-i", "--input_file", required=True, help="csv input file (with extension)", type=str)