1 from coprs import db 2 import click 3 4 5 @click.command() 6 -def drop_db(): 7 """ 8 Delete DB 9 """ 10 db.drop_all() 11