You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and module1 and module2 have various functions i want to wrap with @arguably.run
i'd like module1 and module2 to appear as subcommands to my main command, and the functions inside them to be subcommands inside the subcommands. is this possible?
The text was updated successfully, but these errors were encountered:
Commands aren't separated by module. Right now, the only way to achieve what you'd want is to prefix all functions in module1 with module1__ and the same for module2.
I'll also add a name override to the @arguably.command decorator - that way, you won't have to rename your functions.
Let's say I have two modules:
and
module1
andmodule2
have various functions i want to wrap with@arguably.run
i'd like
module1
andmodule2
to appear as subcommands to my main command, and the functions inside them to be subcommands inside the subcommands. is this possible?The text was updated successfully, but these errors were encountered: