Skip to content

Commit

Permalink
Fix packages/sharing-editor/public/samples/012_hello/hello.py (#1133)
Browse files Browse the repository at this point in the history
  • Loading branch information
whitphx committed Sep 21, 2024
1 parent b20a061 commit 54524e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
---
> async def data_frame_demo():
186,187c186,188
< AWS_BUCKET_URL = "http://streamlit-demo-data.s3-us-west-2.amazonaws.com"
< AWS_BUCKET_URL = "https://streamlit-demo-data.s3-us-west-2.amazonaws.com"
< df = pd.read_csv(AWS_BUCKET_URL + "/agri.csv.gz")
---
> # AWS_BUCKET_URL = "http://streamlit-demo-data.s3-us-west-2.amazonaws.com"
Expand Down
2 changes: 1 addition & 1 deletion packages/sharing-editor/public/samples/012_hello/hello.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async def mapping_demo():
@st.cache_data
def from_data_file(filename):
url = (
"http://raw.githubusercontent.com/streamlit/"
"https://raw.githubusercontent.com/streamlit/"
"example-data/master/hello/v1/%s" % filename
)
return pd.read_json(url)
Expand Down

0 comments on commit 54524e7

Please sign in to comment.