Skip to content

Commit 1fa4ccc

Browse files
author
Michael Becker
committed
app: Fix errors maybe?
streamlit/streamlit#469
1 parent 128c7fb commit 1fa4ccc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import pandas as pd
22
import streamlit as st
33
import numpy as np
4+
import matplotlib
5+
matplotlib.use('Agg')
46
import matplotlib.pyplot as plt
57

68
hide_menu_style = """
@@ -57,7 +59,7 @@
5759

5860
st.title("COVID-19 Hospital Impact Model for Epidemics")
5961
st.markdown(
60-
"""*This tool was developed by the [Predictive Healthcare team](http://predictivehealthcare.pennmedicine.org/) at Penn Medicine. For questions and comments please see our [contact page](http://predictivehealthcare.pennmedicine.org/contact/).* **If you see any error messages please reload the page.**"""
62+
"""*This tool was developed by the [Predictive Healthcare team](http://predictivehealthcare.pennmedicine.org/) at Penn Medicine. For questions and comments please see our [contact page](http://predictivehealthcare.pennmedicine.org/contact/).*"""
6163
)
6264

6365
if st.checkbox("Show more info about this tool"):

0 commit comments

Comments
 (0)