Skip to content

Commit a070cd4

Browse files
committed
docs: fix simple typo, arparse -> argparse
There is a small typo in scripts/12_csv_split.py. Should read `argparse` rather than `arparse`.
1 parent cb448c2 commit a070cd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/12_csv_split.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
def get_arguments():
3434
"""Grab user supplied arguments using the argparse library."""
3535

36-
# Use arparse to get command line arguments
36+
# Use argparse to get command line arguments
3737
parser = argparse.ArgumentParser()
3838
parser.add_argument("-i", "--input_file", required=True,
3939
help="csv input file (with extension)", type=str)

0 commit comments

Comments
 (0)