Skip to content

Commit fd94ce8

Browse files
retsohuangclaude
andcommitted
πŸ› fix: address PR review feedback from Copilot
- Fix spelling error: "Verion" β†’ "Version" in CLAUDE.md - Fix type hint: use Optional[str] for escape_toon parameter - Fix bare except: use except Exception per PEP 8 πŸ€– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 51d715f commit fd94ce8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

β€ŽCLAUDE.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
66

77
Retso Marketplace is a custom plugin marketplace for Claude Code. It's a Bun monorepo containing plugins, a CLI installer, and the marketplace registry.
88

9-
## Verion Bumping
9+
## Version Bumping
1010

1111
Only bump versions when explicitly requested.
1212

β€Žplugins/code-review-tools/skills/code-review/scripts/cli.pyβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def get_commit_diff(commit_hash: str) -> str:
8484
return run_git(['show', '--patch', '--stat', '--color=never', commit_hash])
8585

8686

87-
def escape_toon(s: str) -> str:
87+
def escape_toon(s: Optional[str]) -> str:
8888
"""Escape a string for TOON format"""
8989
if s is None:
9090
return 'null'
@@ -136,7 +136,7 @@ def get_current_branch() -> str:
136136
try:
137137
output = run_git(['rev-parse', '--abbrev-ref', 'HEAD'])
138138
return output.strip()
139-
except:
139+
except Exception:
140140
return 'HEAD'
141141

142142

0 commit comments

Comments
Β (0)