From 654dea6810dd1e0302a009d55186a3a949cdd3dc Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 9 Feb 2018 14:13:27 +1000 Subject: [PATCH] wacom: pass the uuid up to the slate's super() constructor --- tuhi/wacom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuhi/wacom.py b/tuhi/wacom.py index ed03863..32f6164 100644 --- a/tuhi/wacom.py +++ b/tuhi/wacom.py @@ -601,7 +601,7 @@ class WacomProtocolSlate(WacomProtocolSpark): protocol = Protocol.SLATE def __init__(self, device, uuid): - super().__init__(device) + super().__init__(device, uuid) device.connect_gatt_value(MYSTERIOUS_NOTIFICATION_CHRC_UUID, self._on_mysterious_data_received)