harmdevries commited on
Commit
79e6cc7
1 Parent(s): ca54491

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,6 +1,7 @@
1
  from github import Github
2
  import os
3
  import streamlit as st
 
4
 
5
  import plotly.figure_factory as ff
6
 
@@ -34,5 +35,5 @@ fig.update_xaxes(ticks= "outside",
34
  gridcolor='white')
35
  )
36
 
37
- st.plotly_chart(fig, width=800)
38
 
 
1
  from github import Github
2
  import os
3
  import streamlit as st
4
+ st.set_page_config(layout="wide")
5
 
6
  import plotly.figure_factory as ff
7
 
 
35
  gridcolor='white')
36
  )
37
 
38
+ st.plotly_chart(fig, use_container_width=True)
39