vodkaslime commited on
Commit
a9dfa06
·
unverified ·
1 Parent(s): 61bfa2e

detect cwd

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -1,3 +1,4 @@
 
1
  import shutil
2
  import streamlit as st
3
 
@@ -12,3 +13,4 @@ if b:
12
  st.write("Total: %d GiB" % (total // (2**30)))
13
  st.write("Used: %d GiB" % (used // (2**30)))
14
  st.write("Free: %d GiB" % (free // (2**30)))
 
 
1
+ import os
2
  import shutil
3
  import streamlit as st
4
 
 
13
  st.write("Total: %d GiB" % (total // (2**30)))
14
  st.write("Used: %d GiB" % (used // (2**30)))
15
  st.write("Free: %d GiB" % (free // (2**30)))
16
+ st.write(os.getcwd())