From aa8580bee74af79bc14391598f8f6d8ffa8fa427 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Wed, 19 Oct 2022 14:54:57 +0100 Subject: [PATCH] Remove the bell from the actions03 documentation example --- docs/examples/guide/actions/actions03.py | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/examples/guide/actions/actions03.py b/docs/examples/guide/actions/actions03.py index 22ccf57aa..ff68a58e9 100644 --- a/docs/examples/guide/actions/actions03.py +++ b/docs/examples/guide/actions/actions03.py @@ -15,7 +15,6 @@ class ActionsApp(App): def action_set_background(self, color: str) -> None: self.screen.styles.background = color - self.bell() if __name__ == "__main__":