Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/fosslight_binary/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2020 LG Electronics Inc.
# SPDX-License-Identifier: Apache-2.0
# SSSSSSSSSSSSSSTTTTTTTTTTTTTTTKKKKKKKKKKKKKK
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Remove the stray comment; it does not fix the help output.

Line 5 is just a source comment, so it never reaches users. With this as the only change here, the help text rendered from _HELP_MESSAGE_BINARY remains unchanged and the PR objective is still unmet.

Suggested fix
-# SSSSSSSSSSSSSSTTTTTTTTTTTTTTTKKKKKKKKKKKKKK
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@src/fosslight_binary/_help.py` at line 5, Remove the stray comment line ("#
SSSSSSSSSSSSSSTTTTTTTTTTTTTTTKKKKKKKKKKKKKK") from src/fosslight_binary/_help.py
and update the actual help message constant _HELP_MESSAGE_BINARY (not a comment)
with the intended user-facing text so the CLI help output changes; locate the
_HELP_MESSAGE_BINARY symbol in this module, replace its value with the corrected
help string, and run the help/CLI to verify the output reflects the change.

from fosslight_util.help import PrintHelpMsg
from fosslight_util.output_format import SUPPORT_FORMAT

Expand Down
Loading