chore: fix gitignore — remove mt5_batch_config.json from tracking

This commit is contained in:
unknown
2026-04-14 13:22:27 +10:00
parent 831c0dcef1
commit e3b0d4221d
3 changed files with 79 additions and 36 deletions
+5 -3
View File
@@ -169,9 +169,11 @@ def render():
key=f"ea_editor_{edit_file}"
)
st.session_state['ea_edited'][edit_file] = dict(
zip(edited['Parameter'], edited['Value'].astype(str))
)
# Guard against Streamlit returning edited df without expected columns
if 'Parameter' in edited.columns and 'Value' in edited.columns:
st.session_state['ea_edited'][edit_file] = dict(
zip(edited['Parameter'], edited['Value'].astype(str))
)
col1, col2 = st.columns(2)
with col1: