Spaces:
Runtime error
Runtime error
File size: 193 Bytes
819225f |
1 2 3 4 5 6 7 8 |
with open(".env", "r") as f:
content = f.read().replace("\r", "") # remove all \r characters
with open(".env", "w") as f:
f.write(content)
print("Fixed line endings in .env")
|