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."""