Rahul8827 commited on
Commit
d3b2ef1
·
1 Parent(s): 9431016

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -54,7 +54,7 @@ def list_s3_folders(bucket_name):
54
  folders = [o.get('Prefix') for o in result.get('CommonPrefixes')]
55
  return folders
56
 
57
- iface = gr.Interface(
58
  fn=list_s3_folders,
59
  inputs="text",
60
  outputs="text",
@@ -64,6 +64,6 @@ iface = gr.Interface(
64
  examples=[["myorg"]]
65
  )
66
 
67
- iface.launch()
68
 
69
 
 
54
  folders = [o.get('Prefix') for o in result.get('CommonPrefixes')]
55
  return folders
56
 
57
+ iface2 = gr.Interface(
58
  fn=list_s3_folders,
59
  inputs="text",
60
  outputs="text",
 
64
  examples=[["myorg"]]
65
  )
66
 
67
+ iface2.launch()
68
 
69