mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 09:24:31 +02:00
Renamed function to fix lint error, refs #348
This commit is contained in:
parent
1d64cd2e5b
commit
2f8879235a
1 changed files with 1 additions and 1 deletions
|
|
@ -1061,7 +1061,7 @@ def upsert(
|
|||
@click.option(
|
||||
"--enable-wal", is_flag=True, help="Enable WAL mode on the created database"
|
||||
)
|
||||
def create_table(path, enable_wal):
|
||||
def create_database(path, enable_wal):
|
||||
"Create a new empty database file."
|
||||
db = sqlite_utils.Database(path)
|
||||
if enable_wal:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue