From 7c5d9ee92d138055d8388bab22c06cd4a5213103 Mon Sep 17 00:00:00 2001 From: Walter Boring Date: Fri, 10 Oct 2025 10:59:39 -0400 Subject: [PATCH] Driver protocol is_alive is property Update the driver protocol to make the is_alive() a property. --- aprsd/client/drivers/registry.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aprsd/client/drivers/registry.py b/aprsd/client/drivers/registry.py index f295952..6e7cb3e 100644 --- a/aprsd/client/drivers/registry.py +++ b/aprsd/client/drivers/registry.py @@ -20,6 +20,7 @@ class ClientDriver(Protocol): def is_configured(self) -> bool: pass + @property def is_alive(self) -> bool: pass