Removed duplicate vacuum() function, thanks mypy

This commit is contained in:
Simon Willison 2021-06-22 10:44:12 -07:00
commit 3805d1c973

View file

@ -260,17 +260,6 @@ def views(
)
@cli.command()
@click.argument(
"path",
type=click.Path(exists=True, file_okay=True, dir_okay=False, allow_dash=False),
required=True,
)
def vacuum(path):
"""Run VACUUM against the database"""
sqlite_utils.Database(path).vacuum()
@cli.command()
@click.argument(
"path",