From f569aba2b779a0925370891c2e7bd4914762c728 Mon Sep 17 00:00:00 2001 From: pesricha Date: Tue, 24 Dec 2024 18:15:15 +0530 Subject: [PATCH] removed indent so that pages, Gui are not part of page_2 --- .../articles/understanding_gui/step_07/step_07.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/tutorials/articles/understanding_gui/step_07/step_07.md b/docs/tutorials/articles/understanding_gui/step_07/step_07.md index 0a29d6be1..10abc9bb4 100644 --- a/docs/tutorials/articles/understanding_gui/step_07/step_07.md +++ b/docs/tutorials/articles/understanding_gui/step_07/step_07.md @@ -93,12 +93,12 @@ For example, this code creates a menu with two options: with tgb.Page() as page_2: tgb.text("## This is page 2", mode="md") - pages = { - "/": root_page, - "Page-1": page_1, - "Page-2": page_2 - } - Gui(pages=pages).run() + pages = { + "/": root_page, + "Page-1": page_1, + "Page-2": page_2 + } + Gui(pages=pages).run() ``` === "Markdown" ```python