Skip to content

Commit

Permalink
[Bug fix] Korean language issue #9
Browse files Browse the repository at this point in the history
  • Loading branch information
cecy07 committed Sep 26, 2023
1 parent 25c4785 commit a1e1d9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def check_login():

# get train_codes from new df
if not new_df.empty:
train_codes = new_df["No"].tolist()
train_codes = new_df.iloc[:,1].tolist()
# st.write(train_codes)

st.header(_("Runner Settings"))
Expand Down

0 comments on commit a1e1d9c

Please sign in to comment.