readme: fix gpio config example

Commit eea8a4a5 renamed the group config key from `gpio_config` to
`group_gpio_config`. Reading a single GPIO pin is done within the
GPIO definition object.

When using the example, it'll result in a SIGABRT because it fallbacks
to the non-group parsing, expecting either a pin or num:

```
Start Phosphor buttons service...
terminate called after throwing an instance of 'nlohmann::json_abi_v3_11_3::detail::out_of_range'
  what():  [json.exception.out_of_range.403] key 'num' not found
```

Tested: Start phosphor-buttons with the new example config does not
        result in a SIGABRT.

Fixes: eea8a4a5 ("Fix parsing gpio config format issue")
Change-Id: I3b7ac1363b998ae3f996c78dda45628e707af95a
Signed-off-by: Tan Siewert <tan.siewert@hetzner.com>
diff --git a/README.md b/README.md
index 47f3c45..9e2d5b6 100644
--- a/README.md
+++ b/README.md
@@ -73,21 +73,13 @@
   "gpio_definitions": [
     {
       "name": "POWER_BUTTON",
-      "gpio_config": [
-        {
-          "pin": "D0",
-          "direction": "both"
-        }
-      ]
+      "pin": "D0",
+      "direction": "both"
     },
     {
       "name": "RESET_BUTTON",
-      "gpio_config": [
-        {
-          "pin": "AB0",
-          "direction": "both"
-        }
-      ]
+      "pin": "AB0",
+      "direction": "both"
     },
     {
       "name": "HOST_SELECTOR",