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:
parent
0c515d45fe
commit
9146ff76c9
@ -130,7 +130,7 @@ def send_message(
|
||||
sys.exit(0)
|
||||
|
||||
try:
|
||||
APRSDClient().client # noqa: B018
|
||||
APRSDClient() # noqa: B018
|
||||
except LoginError:
|
||||
sys.exit(-1)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user