Mattral commited on
Commit
15f5749
·
verified ·
1 Parent(s): db70d75

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -171,7 +171,7 @@ def main():
171
  for match in exact_matches:
172
  warehouse_index = text_pair[0] + 2
173
  industry_index = text_pair[1] + 2
174
- st.write(f"Row {match[0]} in warehouse item stocks is exactly the same as Row {match[1]} in industry item stocks:")
175
  st.write(f"Warehouse: {match[2]}")
176
  st.write(f"Industry: {match[3]}")
177
  st.write(f"____________________")
@@ -183,7 +183,7 @@ def main():
183
  warehouse_index = text_pair[0] + 2
184
  industry_index = text_pair[1] + 2
185
 
186
- st.write(f"Row {text_pair[0]} in warehouse item stocks is similar to Row {text_pair[1]} in industry item stocks:")
187
  st.write(f"Warehouse: {text_pair[2]}")
188
  st.write(f"Industry: {text_pair[3]}")
189
  st.write(f"____________________")
 
171
  for match in exact_matches:
172
  warehouse_index = text_pair[0] + 2
173
  industry_index = text_pair[1] + 2
174
+ st.write(f"Row {warehouse_index} in warehouse item stocks is exactly the same as Row {industry_index} in industry item stocks:")
175
  st.write(f"Warehouse: {match[2]}")
176
  st.write(f"Industry: {match[3]}")
177
  st.write(f"____________________")
 
183
  warehouse_index = text_pair[0] + 2
184
  industry_index = text_pair[1] + 2
185
 
186
+ st.write(f"Row {warehouse_index} in warehouse item stocks is similar to Row {industry_index} in industry item stocks:")
187
  st.write(f"Warehouse: {text_pair[2]}")
188
  st.write(f"Industry: {text_pair[3]}")
189
  st.write(f"____________________")