Spaces:
Paused
Paused
| with open("constants.ts", "r") as f: | |
| content = f.read() | |
| content = content.replace( | |
| "{ id: 'jules-4', name: 'Jules 4', color: 'bg-fuchsia-600', profile: 'Greene-ctrl' }", | |
| "{ id: 'jules-4', name: 'Jules 4', color: 'bg-fuchsia-600', profile: 'AUXteam' }" | |
| ) | |
| with open("constants.ts", "w") as f: | |
| f.write(content) | |