From 02ba3ddd5d3ba33efc5f8cd016ba19e0384e2929 Mon Sep 17 00:00:00 2001 From: Eva Lott Date: Tue, 20 Feb 2024 10:38:19 +0000 Subject: [PATCH] Changed to "Go" in ButtonPanel --- schemas/pvi.device.schema.json | 2 +- src/pvi/device.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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):