nityathakkar commited on
Commit
3bd4c5b
·
verified ·
1 Parent(s): acfe5db

paper_id string

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -443,7 +443,7 @@ if user_input:
443
 
444
  st.title(f'Review feedback')
445
 
446
- if annotations['submission_id'].str.contains(paper_id).any():
447
  st.write(f'We have a human annotation for {paper_id}')
448
  # Create four columns
449
  col1, col2, col3, col4 = st.columns(4)
 
443
 
444
  st.title(f'Review feedback')
445
 
446
+ if annotations['submission_id'].str.contains(str(paper_id)).any():
447
  st.write(f'We have a human annotation for {paper_id}')
448
  # Create four columns
449
  col1, col2, col3, col4 = st.columns(4)