Skip to content

Commit 21e80df

Browse files
committed
It's return_db, not _return_db - refs #643
1 parent 2258b43 commit 21e80df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/plugins.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ As a special niche feature, if your plugin needs to import some files and then a
131131
)
132132
def show_schema_for_files(ctx, paths):
133133
from sqlite_utils.cli import memory
134-
db = ctx.invoke(memory, paths=paths, _return_db=True)
134+
db = ctx.invoke(memory, paths=paths, return_db=True)
135135
# Now do something with that database
136136
click.echo(db.schema)
137137

0 commit comments

Comments
 (0)