diff --git a/schemas/pvi.device.schema.json b/schemas/pvi.device.schema.json index 2f92c144..1e4537a7 100644 --- a/schemas/pvi.device.schema.json +++ b/schemas/pvi.device.schema.json @@ -100,7 +100,7 @@ "type": "string" }, "default": { - "go": "1" + "Go": "1" }, "description": "PV poker buttons", "title": "Actions", diff --git a/src/pvi/device.py b/src/pvi/device.py index 6254416d..2b69dddb 100644 --- a/src/pvi/device.py +++ b/src/pvi/device.py @@ -159,7 +159,7 @@ class ButtonPanel(WriteWidget): """ - actions: Dict[str, str] = Field(default={"go": "1"}, description="PV poker buttons") + actions: Dict[str, str] = Field(default={"Go": "1"}, description="PV poker buttons") class TextWrite(WriteWidget):