From 4a46257e383dc6cea5167de7c89667293dda1b4d Mon Sep 17 00:00:00 2001 From: Darren Burns Date: Tue, 20 Sep 2022 17:46:41 +0100 Subject: [PATCH] Revert center layout snapshot to make it pass --- docs/examples/guide/layout/center_layout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/guide/layout/center_layout.py b/docs/examples/guide/layout/center_layout.py index 204242117..0cf31c615 100644 --- a/docs/examples/guide/layout/center_layout.py +++ b/docs/examples/guide/layout/center_layout.py @@ -6,7 +6,7 @@ class CenterLayoutExample(App): CSS_PATH = "center_layout.css" def compose(self) -> ComposeResult: - yield Static("One!", id="bottom") + yield Static("One", id="bottom") yield Static("Two", id="middle") yield Static("Three", id="top")