Version: 2.2.1
Use Case
Using the example tasks.py...
from invoke.tasks import task
@task
def show_help(c):
"""Show available tasks."""
print("Available tasks:")
@task
def showhelp(c):
"""Show available tasks."""
print("Available tasks:")
Calling showhelp...
prints
however, calling 'show_help`...
results in
No idea what 'show_help' is!