-
Notifications
You must be signed in to change notification settings - Fork 387
feat: add base flag to info command #3779
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Co-authored-by: Klaim <Klaim@users.noreply.github.com>
Signed-off-by: Julien Jerphanion <git@jjerphan.xyz> Co-authored-by: Johan Mabille <johan.mabille@gmail.com> Co-authored-by: Hind Montassif <hind.montassif@gmail.com>
…mamba-org#3792) Signed-off-by: Julien Jerphanion <git@jjerphan.xyz>
Signed-off-by: Julien Jerphanion <git@jjerphan.xyz>
…rg#3788) Signed-off-by: Julien Jerphanion <git@jjerphan.xyz>
else: | ||
items += ["base environment"] | ||
if json_flag == "--json": | ||
assert all(i in infos.keys() for i in items) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nitpick: This tests that items
is a subset of infos.keys()
but I guess this is sufficient
This comment also applies elsewhere.
@@ -20,7 +20,7 @@ namespace mamba | |||
|
|||
namespace detail | |||
{ | |||
struct list_options | |||
struct ListOptions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree that the current *_options
structs should be PascalCase-named.
I am waiting for another approval before merging. |
Adds one of the missing sub-command #3535