From 9f1452076ccd9bf66649deae517af5d6af5af5e0 Mon Sep 17 00:00:00 2001 From: Christopher Kent Hoadley Date: Sun, 2 Jan 2022 21:05:59 -0600 Subject: [PATCH] Add Missing Comma In Example Add missing comma in demo.py snippet. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 33d566dd..455698cd 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ import pytermgui as ptg demo = ptg.Window( ptg.Label("[210 bold]Hello world!"), ptg.Label(), - ptg.InputField(prompt="Who are you?") + ptg.InputField(prompt="Who are you?"), ptg.Label(), ptg.Button("Submit!") )