From 04e51f449c05efeec3687e86642e72ddab3a69ed Mon Sep 17 00:00:00 2001 From: Ben Lawson Date: Sun, 12 Nov 2023 21:33:39 -0800 Subject: [PATCH] Update android codelab to fix unpacking error (#66) --- doc/android-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/android-guide.md b/doc/android-guide.md index 9f53d15..0f825a0 100644 --- a/doc/android-guide.md +++ b/doc/android-guide.md @@ -100,7 +100,7 @@ class CodelabTest(base_test.BaseTestClass): # type: ignore[misc] # Method to set up the DUT and REF devices for the test (called once). def setup_class(self) -> None: self.devices = PandoraDevices(self) # Create Pandora devices from the config. - self.dut, ref = self.devices + self.dut, ref, *_ = self.devices assert isinstance(ref, BumblePandoraClient) # REF device is a Bumble device. self.ref = ref