Doesn't work on non-win32 os
- 主要言語
- Python
- スター
- 6
- フォーク
- 1
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
Required change:
class style():
BLACK = ""
RED = ""
GREEN = ""
YELLOW = ""
BLUE = ""
MAGENTA = ""
CYAN = ""
WHITE = ""
UNDERLINE = ""
RESET = ""
to
class style():
BLACK = lambda x: str(x)
RED = lambda x: str(x)
GREEN = lambda x: str(x)
YELLOW = lambda x: str(x)
BLUE = lambda x: str(x)
MAGENTA = lambda x: str(x)
CYAN = lambda x: str(x)
WHITE = lambda x: str(x)
UNDERLINE = lambda x: str(x)
RESET = lambda x: str(x)
コントリビューションガイド
調査の方向性
Find the style class in the codebase, likely in a file handling terminal colors. Change the empty string constants to lambda functions that return the input as a string. Test by running the CLI on a non-Windows OS to verify colors are disabled gracefully.
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- cli
- issue の種類
- バグ
- 難易度
- 1/5
- 見積もり時間
- 1時間未満
- 活発さ
- 停滞
- 明瞭さ
- 明確に書かれている
- 初心者へのやさしさ
- 70/100