kmfoda commited on
Commit
744f7bb
1 Parent(s): 47dac94

Fix columns error

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -308,7 +308,7 @@ if __name__ == "__main__":
308
  raise FileNotFoundError(f"File not found: {path.name}")
309
  else:
310
  file_index = 0
311
- col1, col2 = st.beta_columns((3, 1))
312
  filename = col1.selectbox(label="File:", options=files, index=file_index)
313
  dataset = load_dataset(str(path_dir / filename), nlp=nlp)
314
 
 
308
  raise FileNotFoundError(f"File not found: {path.name}")
309
  else:
310
  file_index = 0
311
+ col1, col2 = st.columns((3, 1))
312
  filename = col1.selectbox(label="File:", options=files, index=file_index)
313
  dataset = load_dataset(str(path_dir / filename), nlp=nlp)
314