Skip to content

Commit 0305349

Browse files
jsbattigclaude
andcommitted
Fix black formatting for CLAUDE.md compliance test
Applied black auto-formatting to test_claude_md_compliance_violations_cleanup.py 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent de079e1 commit 0305349

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

tests/unit/services/test_claude_md_compliance_violations_cleanup.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,17 @@ def test_no_backward_compatibility_fallback_code(self):
6868
violations = []
6969
for pattern in fallback_patterns:
7070
result = subprocess.run(
71-
["grep", "-r", "-i", "--exclude-dir=__pycache__", "--include=*.py", pattern, "src/"],
72-
capture_output=True, text=True
71+
[
72+
"grep",
73+
"-r",
74+
"-i",
75+
"--exclude-dir=__pycache__",
76+
"--include=*.py",
77+
pattern,
78+
"src/",
79+
],
80+
capture_output=True,
81+
text=True,
7382
)
7483
if result.returncode == 0: # Found matches
7584
violations.append(f"Pattern '{pattern}':\n{result.stdout}")

0 commit comments

Comments
 (0)