blob: a568a6ad06ee0cd33678452843a189bd62348332 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""From https://click.palletsprojects.com/en/8.1.x/options/#yes-parameters"""
from typing_extensions import assert_type
import click
@click.command()
@click.confirmation_option(prompt="Are you sure you want to drop the db?")
def dropdb() -> None:
click.echo("Dropped all tables!")
assert_type(dropdb, click.Command)
|