From ed4ae71a92039fb31e32ec03b88085cf441e8dd5 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 26 May 2026 09:24:48 +0200 Subject: [PATCH] Fix driverinfo retrieval to handle empty cases --- alpaca/device.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpaca/device.py b/alpaca/device.py index 1d5f9ff..3a47a90 100644 --- a/alpaca/device.py +++ b/alpaca/device.py @@ -705,7 +705,7 @@ def DriverInfo(self) -> List[str]: there. """ - return [i.strip() for i in self._get("driverinfo").split(",")] + return [i.strip() for i in self._get("driverinfo", "").split(",")] @property def DriverVersion(self) -> str: