clarkperkins / click-shell

An extension to click that easily turns your click app into a shell utility
BSD 3-Clause "New" or "Revised" License
88 stars 17 forks source link

Support for django? #47

Open aegonzalez opened 2 years ago

aegonzalez commented 2 years ago

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?