zhiminy commited on
Commit
7db2ded
1 Parent(s): 3e2189b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ import streamlit as st
4
  @st.cache_data(ttl=3600) # Cache the data for 1 hour
5
  def fetch_readme_content():
6
  try:
7
- url = "https://raw.githubusercontent.com/EthicalML/awesome-production-machine-learning/main/README.md"
8
  response = requests.get(url, timeout=30)
9
  response.raise_for_status() # Raises HTTPError for bad responses
10
  return response.text
 
4
  @st.cache_data(ttl=3600) # Cache the data for 1 hour
5
  def fetch_readme_content():
6
  try:
7
+ url = "https://raw.githubusercontent.com/EthicalML/awesome-production-machine-learning/master/README.md"
8
  response = requests.get(url, timeout=30)
9
  response.raise_for_status() # Raises HTTPError for bad responses
10
  return response.text