claude-proxy / fix_readme.py
dheraingoud's picture
fix: include .env.example for hatchling build
c26139d
Raw
History Blame Contribute Delete
249 Bytes
with open('README.md', 'r', encoding='utf-8') as f:
content = f.read()
# Replace the mangled ?? with the rocket emoji
content = content.replace('emoji: ??', 'emoji: ??')
with open('README.md', 'w', encoding='utf-8') as f:
f.write(content)