From 6e01d46b40b432c70ea4ee6cf402355adcb36538 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Fri, 26 Aug 2022 10:13:49 +0100 Subject: [PATCH] remove debug --- docs/examples/introduction/stopwatch.css | 4 ---- docs/examples/introduction/stopwatch.py | 1 - 2 files changed, 5 deletions(-) diff --git a/docs/examples/introduction/stopwatch.css b/docs/examples/introduction/stopwatch.css index c7e0fbb92..93678369c 100644 --- a/docs/examples/introduction/stopwatch.css +++ b/docs/examples/introduction/stopwatch.css @@ -51,7 +51,3 @@ Button { .started #reset { visibility: hidden } - -/* #timers:hover { - background: blue; -} */ diff --git a/docs/examples/introduction/stopwatch.py b/docs/examples/introduction/stopwatch.py index ba31a7e26..15dff3a1c 100644 --- a/docs/examples/introduction/stopwatch.py +++ b/docs/examples/introduction/stopwatch.py @@ -88,7 +88,6 @@ class StopwatchApp(App): new_stopwatch = Stopwatch() self.query_one("#timers").mount(new_stopwatch) new_stopwatch.scroll_visible() - self.sub_title = str(len(self.query("Stopwatch"))) def action_remove_stopwatch(self) -> None: """Called to remove a timer."""