Spaces:
Runtime error
Runtime error
Corey Morris
commited on
Commit
·
627b779
1
Parent(s):
88c2b27
cleanup of unused code
Browse files
app.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
import gradio as gr
|
2 |
-
import requests
|
3 |
import pandas as pd
|
4 |
import os
|
5 |
import fnmatch
|
@@ -7,8 +6,8 @@ import json
|
|
7 |
|
8 |
|
9 |
class MultiURLData:
|
10 |
-
def __init__(self
|
11 |
-
|
12 |
|
13 |
def fetch_data(self):
|
14 |
|
@@ -51,7 +50,7 @@ class MultiURLData:
|
|
51 |
|
52 |
return data
|
53 |
|
54 |
-
data_provider = MultiURLData(
|
55 |
|
56 |
block = gr.Blocks()
|
57 |
|
|
|
1 |
import gradio as gr
|
|
|
2 |
import pandas as pd
|
3 |
import os
|
4 |
import fnmatch
|
|
|
6 |
|
7 |
|
8 |
class MultiURLData:
|
9 |
+
def __init__(self):
|
10 |
+
pass
|
11 |
|
12 |
def fetch_data(self):
|
13 |
|
|
|
50 |
|
51 |
return data
|
52 |
|
53 |
+
data_provider = MultiURLData()
|
54 |
|
55 |
block = gr.Blocks()
|
56 |
|