diff --git a/nanobot/cli/commands.py b/nanobot/cli/commands.py index 7c4d31f3e..5ce8b7937 100644 --- a/nanobot/cli/commands.py +++ b/nanobot/cli/commands.py @@ -1119,7 +1119,7 @@ def channels_status( table = Table(title="Channel Status") table.add_column("Channel", style="cyan") - table.add_column("Enabled", style="green") + table.add_column("Enabled") for name, cls in sorted(discover_all().items()): section = getattr(config.channels, name, None) @@ -1254,7 +1254,7 @@ def plugins_list(): table = Table(title="Channel Plugins") table.add_column("Name", style="cyan") table.add_column("Source", style="magenta") - table.add_column("Enabled", style="green") + table.add_column("Enabled") for name in sorted(all_channels): cls = all_channels[name]