From 15758d02fd437004fd9f84c9d4a8bf49f0793e13 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 9 Aug 2021 14:45:39 -0700 Subject: [PATCH] Fixed spelling of objects, refs #310 --- sqlite_utils/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite_utils/cli.py b/sqlite_utils/cli.py index 2f32d0a..79103bc 100644 --- a/sqlite_utils/cli.py +++ b/sqlite_utils/cli.py @@ -643,7 +643,7 @@ def insert_upsert_options(fn): "--pk", help="Columns to use as the primary key, e.g. id", multiple=True ), click.option("--nl", is_flag=True, help="Expect newline-delimited JSON"), - click.option("--flatten", is_flag=True, help="Flatten nested JSON objets"), + click.option("--flatten", is_flag=True, help="Flatten nested JSON objects"), click.option("-c", "--csv", is_flag=True, help="Expect CSV"), click.option("--tsv", is_flag=True, help="Expect TSV"), click.option("--delimiter", help="Delimiter to use for CSV files"),