Nawal20 commited on
Commit
8ba33e0
·
verified ·
1 Parent(s): 0431ea8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -53,7 +53,7 @@ if keywords:
53
  if "Products" in data and data["Products"]:
54
  st.header("Search Results")
55
 
56
- or product in data["Products"]:
57
  st.subheader(product["Description"]["ProductDescription"])
58
  st.write(f"**Manufacturer**: {product['Manufacturer']['Name']}")
59
  st.write(f"**Product Number**: {product['ManufacturerProductNumber']}")
 
53
  if "Products" in data and data["Products"]:
54
  st.header("Search Results")
55
 
56
+ for product in data["Products"]:
57
  st.subheader(product["Description"]["ProductDescription"])
58
  st.write(f"**Manufacturer**: {product['Manufacturer']['Name']}")
59
  st.write(f"**Product Number**: {product['ManufacturerProductNumber']}")