From a03513c2ec1c78833b1179c1ee218ba94c27b5a8 Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Sat, 13 Mar 2021 18:28:47 -0600 Subject: [PATCH] fix f-string with missing f --- docs/source/live.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/live.rst b/docs/source/live.rst index 3bd05181..193dbeb2 100644 --- a/docs/source/live.rst +++ b/docs/source/live.rst @@ -123,7 +123,7 @@ The Live class will create an internal Console object which you can access via ` with Live(table, refresh_per_second=4) as live: # update 4 times a second to feel fluid for row in range(12): - live.console.print("Working on row #{row}") + live.console.print(f"Working on row #{row}") time.sleep(0.4) table.add_row(f"{row}", f"description {row}", "[red]ERROR")