1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-02-02 08:23:53 -05:00

Driver protocol is_alive is property

Update the driver protocol to make the is_alive() a property.
This commit is contained in:
Walter Boring 2025-10-10 10:59:39 -04:00
parent 3d353dcd26
commit 7c5d9ee92d

View File

@ -20,6 +20,7 @@ class ClientDriver(Protocol):
def is_configured(self) -> bool:
pass
@property
def is_alive(self) -> bool:
pass