We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8eb5a62 + 3135e82 commit 71ac7ccCopy full SHA for 71ac7cc
src/_nebari/cli.py
@@ -10,7 +10,7 @@
10
class OrderCommands(TyperGroup):
11
def list_commands(self, ctx: typer.Context):
12
"""Return list of commands in the order appear."""
13
- return list(self.commands)
+ return list(self.commands)[::-1]
14
15
16
def version_callback(value: bool):
src/_nebari/subcommands/info.py
@@ -14,6 +14,9 @@ def nebari_subcommand(cli: typer.Typer):
@cli.command()
def info(ctx: typer.Context):
17
+ """
18
+ Display information about installed Nebari plugins and their configurations.
19
20
from nebari.plugins import nebari_plugin_manager
21
22
rich.print(f"Nebari version: {__version__}")
0 commit comments