From f934f6f07f3651331097fdf672b315267a04fb16 Mon Sep 17 00:00:00 2001 From: Adam Parkin Date: Sat, 1 May 2021 21:03:42 -0700 Subject: [PATCH] Fix scrollbar example --- examples/scrollbar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/scrollbar.py b/examples/scrollbar.py index c461ea8..554e116 100644 --- a/examples/scrollbar.py +++ b/examples/scrollbar.py @@ -4,7 +4,7 @@ cli = ScrollBar( "How are you feeling today? ", - emojis.feelings[0], + emojis.feelings, height = 5, align = 5, margin = 0, @@ -15,4 +15,4 @@ ) print('\n') result = cli.launch() -print(result) \ No newline at end of file +print(result)