Remove normalization of trailing line endings

This commit is contained in:
rubenwardy 2024-08-26 11:56:30 +01:00
parent 9aa8886309
commit ac34939c99

@ -56,7 +56,7 @@ def normalize_line_endings(value: Optional[str]) -> Optional[str]:
if value is None:
return None
return value.replace("\r\n", "\n").strip()
return value.replace("\r\n", "\n")
def should_return_json():