We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f044c50 commit 895c447Copy full SHA for 895c447
codeflash/cli_cmds/cmd_init.py
@@ -591,7 +591,7 @@ def configure_pyproject_toml(setup_info: SetupInfo) -> None:
591
try:
592
result = subprocess.run([formatter], capture_output=True, check=False)
593
except FileNotFoundError as e:
594
- click.echo(f"⚠️ Formatter not found: {formatter}, please install via \'pip install {formatter}\'")
+ click.echo(f"⚠️ Formatter not found: {formatter}, please ensure it is installed")
595
codeflash_section["formatter-cmds"] = formatter_cmds
596
# Add the 'codeflash' section, ensuring 'tool' section exists
597
tool_section = pyproject_data.get("tool", tomlkit.table())
0 commit comments