Tiny tweak to CLI option help

This commit is contained in:
Simon Willison 2023-12-07 20:59:56 -08:00
commit 1698a9dcbb
2 changed files with 5 additions and 5 deletions

View file

@ -904,7 +904,7 @@ def insert_upsert_options(*, require_pk=False):
"--strict",
is_flag=True,
default=False,
help="Apply STRICT mode to table",
help="Apply STRICT mode to created table",
),
)
):
@ -1517,7 +1517,7 @@ def create_database(path, enable_wal, init_spatialite, load_extension):
@click.option(
"--strict",
is_flag=True,
help="Apply STRICT mode to table",
help="Apply STRICT mode to created table",
)
def create_table(
path,