Omnibus commited on
Commit
9c782e4
·
verified ·
1 Parent(s): 244e174

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -686,7 +686,7 @@ def valid_list(inp):
686
  inp_typ = type(inp)
687
  if inp_typ=="<class 'str'>":
688
  print("STRING")
689
- new_list=list(inp_typ.split("[")[1].split("]")[0])
690
  print(new_list)
691
  print(type(new_list))
692
 
 
686
  inp_typ = type(inp)
687
  if inp_typ=="<class 'str'>":
688
  print("STRING")
689
+ new_list=list(inp.split("[")[1].split("]",-1)[0])
690
  print(new_list)
691
  print(type(new_list))
692