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 fe71b4f commit f044c50Copy full SHA for f044c50
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}")
+ click.echo(f"⚠️ Formatter not found: {formatter}, please install via \'pip install {formatter}\'")
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