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 5cd13ad commit 1522227Copy full SHA for 1522227
codeflash/code_utils/formatter.py
@@ -39,10 +39,10 @@ def should_format_file(filepath, max_lines_changed=50):
39
return True
40
41
except subprocess.CalledProcessError:
42
- logger.warning(f"black command failed for {filepath}")
+ logger.warning(f"black --diff command failed for {filepath}")
43
return False
44
except FileNotFoundError:
45
- logger.warning("black is not installed. Skipping formatting check.")
+ logger.warning("black formatter is not installed. Skipping formatting diff check.")
46
47
48
0 commit comments