diff --git a/examples/status.py b/examples/status.py index 7e2efee9..88d1679e 100644 --- a/examples/status.py +++ b/examples/status.py @@ -9,6 +9,5 @@ tasks = [f"task {n}" for n in range(1, 11)] with console.status("[bold green]Working on tasks...") as status: while tasks: task = tasks.pop(0) - sleep(1) + sleep(1) console.log(f"{task} complete") -