I'm trying to use click-shell with djclick:
@click_shell.shell()
@djclick.group(invoke_without_command=True)
def top_shell():
click.echo("hi there")
But I get this error:
Attempted to convert a callback into a command twice.
Any suggestions on how to use both packages?
I'm trying to use click-shell with djclick:
@click_shell.shell()
@djclick.group(invoke_without_command=True)
def top_shell():
click.echo("hi there")
But I get this error:
Attempted to convert a callback into a command twice.
Any suggestions on how to use both packages?