Browse Source

fix @click.command example by adding parens

Otherwise the example fails with the following error: 
"name = name or cmd.name AttributeError: 'function' object has no attribute 'name'". 

More details: https://stackoverflow.com/a/51923415/4619705
pull/2915/head
Jarek Lipski 6 years ago committed by GitHub
parent
commit
47dadcfe15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/cli.rst

2
docs/cli.rst

@ -308,7 +308,7 @@ decorator instead of the Flask decorator, you can use
import click import click
from flask.cli import with_appcontext from flask.cli import with_appcontext
@click.command @click.command()
@with_appcontext @with_appcontext
def do_work(): def do_work():
... ...

Loading…
Cancel
Save