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
In the example code below I have created a command that has nested @ArgGroup options but there appears to be an issue where the options in the inner most arg group (i.e. --level-3a-param <level3aParam> and --level-3b-param <level3bParam>) are also being reported as available options in the outer level.
Thanks for raising this. The logic for creating the synopsis for argument groups was incorrect and only worked for 2 levels of nesting. This is now fixed and should work for any level of nesting. Nice catch!
In the example code below I have created a command that has nested
@ArgGroup
options but there appears to be an issue where the options in the inner most arg group (i.e.--level-3a-param <level3aParam>
and--level-3b-param <level3bParam>
) are also being reported as available options in the outer level.The text was updated successfully, but these errors were encountered: