tortoise-tts / removethecarriage.py
richardseattle2025's picture
Upload folder using huggingface_hub
819225f verified
raw
history blame contribute delete
193 Bytes
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")