Patterns and strategies for fixing code issues identified during review. Use this when asked to fix bugs, refactor code, or apply best practices.
This skill provides patterns for revising Python code based on review findings, including common fixes, refactoring strategies, and testing approaches.
Before:
data = json.load(open('data.json'))
After:
import sys