Terence9 commited on
Commit
63003f5
·
verified ·
1 Parent(s): 2b6f240

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -13,7 +13,7 @@ def extract_values(data):
13
  yield data
14
 
15
  #Function to comparison of two JSON
16
- def compare_json_json(json1, json2):
17
  value1 = set(extract_values(json1))
18
  value2 = set(extract_values(json2))
19
  return sorted(value1.intersection(value2))
 
13
  yield data
14
 
15
  #Function to comparison of two JSON
16
+ def compare_json(json1, json2):
17
  value1 = set(extract_values(json1))
18
  value2 = set(extract_values(json2))
19
  return sorted(value1.intersection(value2))