From 08eb1f1fab5c89391bdd60a87b9b6402a7b4677f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Gir=C3=A3o=20Serr=C3=A3o?= <5621605+rodrigogiraoserrao@users.noreply.github.com> Date: Thu, 25 May 2023 11:01:47 +0100 Subject: [PATCH] Remove invalid ref. --- src/textual/widgets/_progress_bar.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/textual/widgets/_progress_bar.py b/src/textual/widgets/_progress_bar.py index 8eb6449fd..66784c443 100644 --- a/src/textual/widgets/_progress_bar.py +++ b/src/textual/widgets/_progress_bar.py @@ -281,9 +281,6 @@ class ProgressBar(Widget, can_focus=False): The percentage is a value between 0 and 1 and the returned value is only `None` if the total progress of the bar hasn't been set yet. - In other words, after the progress bar emits the message - [`ProgressBar.Started`][textual.widgets.ProgressBar.Started], - the value of `percentage` is always not `None`. Example: ```py