build-small-hackathon/Off-Grid-Field-Repair-Logbook
1
1import sys2from pathlib import Path3 4app_file = Path("app_kit/app.py")5content = app_file.read_text()6 7# Update Columns to have min_width8content = content.replace(9 'with gr.Column(scale=1):',10 'with gr.Column(scale=1, min_width=400):'11)12 13app_file.write_text(content)14 