from pathlib import Path
p=Path('/opt/struktur/social-media-agent/app.py')
s=p.read_text()
s=s.replace('            " " + date_clause\n', '            f" {date_clause}"\n')
p.write_text(s)
