tlarsson commited on
Commit
5598c37
·
verified ·
1 Parent(s): cca279b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -117,10 +117,7 @@ def handle_upload(contents, filenames):
117
  _, content_string = content.split(",")
118
  uploaded_files[name] = base64.b64decode(content_string).decode("utf-8")
119
  parsed = parse_functions_from_files(uploaded_files)
120
- print("== PARSED FUNCTION NAMES ==")
121
- for fn, meta in parsed.items():
122
- print(f"{fn} → calls: {meta.get('calls', [])}")
123
- print("== END ==")
124
 
125
  # options = [{"label": fn, "value": fn} for fn in parsed if parsed[fn]["calls"]]
126
  options = [{"label": fn, "value": fn} for fn in parsed]
 
117
  _, content_string = content.split(",")
118
  uploaded_files[name] = base64.b64decode(content_string).decode("utf-8")
119
  parsed = parse_functions_from_files(uploaded_files)
120
+
 
 
 
121
 
122
  # options = [{"label": fn, "value": fn} for fn in parsed if parsed[fn]["calls"]]
123
  options = [{"label": fn, "value": fn} for fn in parsed]