From bdce3afb5e470fbf38fcf1be4d57b0363d91eba3 Mon Sep 17 00:00:00 2001 From: Toby Fox Date: Tue, 9 May 2023 21:49:28 +0100 Subject: [PATCH] Fix typo in test_progress.py --- test_progress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_progress.py b/test_progress.py index 802bd2e..2472efd 100755 --- a/test_progress.py +++ b/test_progress.py @@ -33,7 +33,7 @@ for bar_cls in (IncrementalBar, PixelBar, ShadyBar): bar.next() sleep() -bar = IncrementalBar(bold('Corolored'), color='green') +bar = IncrementalBar(bold('Colored'), color='green') for i in bar.iter(range(200)): sleep()