Spaces:
Runtime error
Runtime error
Commit
·
e849c88
1
Parent(s):
7e5fab7
:poop: gotta call main() ya dummy
Browse files
app.py
CHANGED
@@ -6,7 +6,6 @@ from subprocess import call
|
|
6 |
import streamlit as st
|
7 |
from huggingface_hub import Repository
|
8 |
|
9 |
-
|
10 |
CACHE_DIR = 'cache_dir/'
|
11 |
|
12 |
|
@@ -35,3 +34,7 @@ def main():
|
|
35 |
st.write(os.listdir('./cache_dir'))
|
36 |
st.json(os.environ)
|
37 |
run_cmd('ls -lash cache_dir/')
|
|
|
|
|
|
|
|
|
|
6 |
import streamlit as st
|
7 |
from huggingface_hub import Repository
|
8 |
|
|
|
9 |
CACHE_DIR = 'cache_dir/'
|
10 |
|
11 |
|
|
|
34 |
st.write(os.listdir('./cache_dir'))
|
35 |
st.json(os.environ)
|
36 |
run_cmd('ls -lash cache_dir/')
|
37 |
+
|
38 |
+
|
39 |
+
if __name__ == '__main__':
|
40 |
+
main()
|