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