rename sendtext_only to outbound

to more accurately describe its purpose.
This commit is contained in:
2023-07-05 14:08:27 +01:00
parent fc3b31dfa7
commit 2c8e4cc87c
5 changed files with 9 additions and 11 deletions

View File

@@ -71,7 +71,7 @@ class FactoryBase(VbanCmd):
"channel": 0,
"ratelimit": 0.01,
"timeout": 5,
"sendtext_only": False,
"outbound": False,
"sync": False,
"pdirty": False,
"ldirty": False,

View File

@@ -85,8 +85,8 @@ class VbanCmd(metaclass=ABCMeta):
return self
def login(self):
"""Starts the subscriber and updater threads (unless sendtext_only mode)"""
if not self.sendtext_only:
"""Starts the subscriber and updater threads (unless in outbound mode)"""
if not self.outbound:
self.running = True
self.event.info()