Dave-13/DevSecOps
0
1def apply_patch(original: str, patched: str) -> str:2 """For now patches are full-file replacements. Extend for diff-based if needed."""3 return patched.strip()4 1def apply_patch(original: str, patched: str) -> str:2 """For now patches are full-file replacements. Extend for diff-based if needed."""3 return patched.strip()4