Omnibus commited on
Commit
2932b4c
·
verified ·
1 Parent(s): 9233412

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -384,7 +384,7 @@ Required keys:
384
  def format_json(inp):
385
  new_json=[]
386
  print("FORMATTING:::")
387
- for i,line in inp:
388
  if line.strip().startswith(("keywords","title","description","content","url","{","}")):
389
  print (line)
390
 
 
384
  def format_json(inp):
385
  new_json=[]
386
  print("FORMATTING:::")
387
+ for i,line in enumerate(inp):
388
  if line.strip().startswith(("keywords","title","description","content","url","{","}")):
389
  print (line)
390