From 669b5006b3bbfe6fb023d76cda62c59773141cf5 Mon Sep 17 00:00:00 2001 From: TomJGooding <101601846+TomJGooding@users.noreply.github.com> Date: Wed, 21 May 2025 10:30:46 +0100 Subject: [PATCH] docs(progress): remove reverted IterationSpeedColumn Remove `IterationSpeedColumn` from the progress documentation, as this addition was reverted not long after being merged (see https://github.com/Textualize/rich/pull/3332#issuecomment-2383977334). Closes #3739. --- docs/source/progress.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/source/progress.rst b/docs/source/progress.rst index baeb3a25ac..5db381bca4 100644 --- a/docs/source/progress.rst +++ b/docs/source/progress.rst @@ -163,7 +163,6 @@ The following column objects are available: - :class:`~rich.progress.TransferSpeedColumn` Displays transfer speed (assumes the steps are bytes). - :class:`~rich.progress.SpinnerColumn` Displays a "spinner" animation. - :class:`~rich.progress.RenderableColumn` Displays an arbitrary Rich renderable in the column. -- :class:`~rich.progress.IterationSpeedColumn` Displays iteration speed in it/s (iterations per second). To implement your own columns, extend the :class:`~rich.progress.ProgressColumn` class and use it as you would the other columns.