From 8239e06de343a7bf1582a33b1481be6f466e7a84 Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Thu, 14 Jan 2021 10:46:17 -0500 Subject: [PATCH] firmware_flasher: fix find_device_with_uid --- src/main/python/firmware_flasher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/python/firmware_flasher.py b/src/main/python/firmware_flasher.py index 08e3792..fa68456 100644 --- a/src/main/python/firmware_flasher.py +++ b/src/main/python/firmware_flasher.py @@ -167,7 +167,7 @@ class FirmwareFlasher(BasicEditor): isinstance(self.device, VialKeyboard) and self.device.keyboard.vibl def find_device_with_uid(self, cls, uid): - devices = find_vial_devices() + devices = find_vial_devices({"definitions": {}}) for dev in devices: if isinstance(dev, cls) and dev.get_uid() == uid: return dev