Skip to content

Commit 3e7e1bf

Browse files
Ilanlidoclaude
andcommitted
CM-58331 - Style: apply ruff formatting
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 17db1ab commit 3e7e1bf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cycode/cli/apps/ai_guardrails/scan/payload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def _reverse_readline(path: Path, buf_size: int = 8192) -> Iterator[str]:
4848
if newline_pos == -1:
4949
break
5050
# Yield the line after this newline
51-
line = buffer[newline_pos + 1:]
51+
line = buffer[newline_pos + 1 :]
5252
buffer = buffer[: newline_pos + 1]
5353
if line.strip():
5454
yield line.decode('utf-8', errors='replace')
@@ -71,7 +71,7 @@ def _extract_generation_id(entry: dict) -> Optional[str]:
7171

7272

7373
def _extract_from_claude_transcript(
74-
transcript_path: str,
74+
transcript_path: str,
7575
) -> tuple[Optional[str], Optional[str], Optional[str]]:
7676
"""Extract IDE version, model, and latest generation ID from Claude Code transcript file.
7777

0 commit comments

Comments
 (0)