mirror of
https://github.com/onyx-and-iris/vban-cmd-python.git
synced 2026-04-06 23:53:31 +00:00
rename sendtext_only to outbound
to more accurately describe its purpose.
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user