From 00d584a7ddf626d385e9270bd73d6c8fe004656e Mon Sep 17 00:00:00 2001 From: Benjamin Waring Date: Fri, 16 Feb 2024 22:34:41 +0000 Subject: [PATCH] Fix example typo in menu section of README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4475dbef..d7464e0a 100644 --- a/README.md +++ b/README.md @@ -439,7 +439,7 @@ Each map is made up of two key/value pairs You can have as many menu groups as you want. They're passed as a list to the `menu` argument on the `@Gooey` decorator. ``` -@Gooey(menu=[{'name': 'File', 'items: []}, +@Gooey(menu=[{'name': 'File', 'items': []}, {'name': 'Tools', 'items': []}, {'name': 'Help', 'items': []}]) ```