Skip to content

Commit 88cabec

Browse files
author
Tim Huff
committed
removing unnecessary comments
1 parent 75e97f1 commit 88cabec

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

src/groundlight/cli.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,7 @@ def wrapper(*args, **kwargs):
166166
return wrapper
167167

168168

169-
# Methods to exclude from the CLI entirely. These may be too complex to express
170-
# as CLI commands, deprecated, or otherwise not useful from a shell context.
169+
# Methods to exclude from the CLI entirely
171170
_CLI_EXCLUDED_METHODS = {
172171
"make_action",
173172
"create_rule",
@@ -181,7 +180,6 @@ def wrapper(*args, **kwargs):
181180
}
182181

183182
# Desired display order of command groups in the CLI help output.
184-
# Groups not listed here appear after the listed ones.
185183
_GROUP_ORDER = [
186184
"Account",
187185
"Detectors",
@@ -193,8 +191,7 @@ def wrapper(*args, **kwargs):
193191
]
194192

195193
# Maps method names to their rich_help_panel group label for the CLI help output.
196-
# Applies to both stable and experimental commands. Methods not listed here fall
197-
# into the default "Commands" panel.
194+
# Applies to both stable and experimental commands.
198195
_COMMAND_GROUPS: dict[str, str] = {
199196
# Account
200197
"whoami": "Account",

0 commit comments

Comments
 (0)