1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-05-26 18:17:54 -04:00

fix: remove stale .client attribute access in send_message command

APRSDClient no longer has a .client property after the driver refactor
(commit 1c39546). Instantiating APRSDClient() is sufficient to trigger
connection via auto_connect=True.
This commit is contained in:
Walter Boring 2026-05-13 23:17:38 -04:00
parent 0c515d45fe
commit 9146ff76c9

View File

@ -130,7 +130,7 @@ def send_message(
sys.exit(0)
try:
APRSDClient().client # noqa: B018
APRSDClient() # noqa: B018
except LoginError:
sys.exit(-1)