From 46b66daa522fb0837e01ee577989d81258b7c0bc Mon Sep 17 00:00:00 2001 From: Tony Li <113576575+lkdhy@users.noreply.github.com> Date: Wed, 19 Jun 2024 07:52:12 +0800 Subject: [PATCH] Update create-a-multiple-container-fragment.md: INDENT FIX (#1094) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixed unexpected lack of indent in function black_cats() and orange_cats() (`st.markdown("🐾 🐾 🐾 🐾")`) --- .../fragments/create-a-multiple-container-fragment.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/develop/tutorials/execution-flow/fragments/create-a-multiple-container-fragment.md b/content/develop/tutorials/execution-flow/fragments/create-a-multiple-container-fragment.md index 50c9d7878..6fb1ea6a9 100644 --- a/content/develop/tutorials/execution-flow/fragments/create-a-multiple-container-fragment.md +++ b/content/develop/tutorials/execution-flow/fragments/create-a-multiple-container-fragment.md @@ -142,7 +142,7 @@ with st.sidebar: def black_cats(): time.sleep(1) st.title("🐈‍⬛ 🐈‍⬛") - st.markdown("🐾 🐾 🐾 🐾") + st.markdown("🐾 🐾 🐾 🐾") ``` This function represents "herding two cats" and uses `time.sleep()` to simulate a slower process. You will use this to draw two cats in one of your grid cards later on. @@ -153,7 +153,7 @@ with st.sidebar: def orange_cats(): time.sleep(1) st.title("🐈 🐈") - st.markdown("🐾 🐾 🐾 🐾") + st.markdown("🐾 🐾 🐾 🐾") ``` 1. (Optional) Test out your functions by calling each one within a grid card.