aus10powell commited on
Commit
7954299
·
1 Parent(s): c7e2079

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -31,7 +31,7 @@ from tqdm import tqdm
31
  import inference
32
  from app_utils import *
33
  from app_plot_utils import *
34
- st.set_page_config(layout="wide")
35
  @st.cache_data
36
  def load_video(video_url):
37
  video_bytes = open(video_url, "rb").read()
@@ -47,6 +47,7 @@ def load_historical(fpath):
47
  # Define the main function to run the Streamlit app
48
  def run_app():
49
  # Set Streamlit options
 
50
  st.set_option("deprecation.showfileUploaderEncoding", False)
51
 
52
 
 
31
  import inference
32
  from app_utils import *
33
  from app_plot_utils import *
34
+
35
  @st.cache_data
36
  def load_video(video_url):
37
  video_bytes = open(video_url, "rb").read()
 
47
  # Define the main function to run the Streamlit app
48
  def run_app():
49
  # Set Streamlit options
50
+ st.set_page_config(layout="wide")
51
  st.set_option("deprecation.showfileUploaderEncoding", False)
52
 
53