Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -29,7 +29,7 @@ if file1 and file2:
|
|
| 29 |
json1 = json.load(file1)
|
| 30 |
json2 = json.load(file2)
|
| 31 |
|
| 32 |
-
matches =
|
| 33 |
|
| 34 |
if matches:
|
| 35 |
st.subheader("Similar values found")
|
|
|
|
| 29 |
json1 = json.load(file1)
|
| 30 |
json2 = json.load(file2)
|
| 31 |
|
| 32 |
+
matches = compare_json(json1, json2)
|
| 33 |
|
| 34 |
if matches:
|
| 35 |
st.subheader("Similar values found")
|