chore: applied all feedback
close: N25B-298
This commit is contained in:
@@ -14,16 +14,16 @@ class State(object):
|
||||
detect this via the `exit_event` property being set.
|
||||
|
||||
:ivar is_initialized: Flag indicating whether the state setup (exit handlers, QI session) has completed.
|
||||
:type is_initialized: bool
|
||||
:vartype is_initialized: bool
|
||||
|
||||
:ivar exit_event: A thread event used to signal all threads that the program is shutting down.
|
||||
:type exit_event: threading.Event | None
|
||||
:vartype exit_event: threading.Event | None
|
||||
|
||||
:ivar sockets: A list of ZeroMQ socket wrappers (`SocketBase`) that need to be closed during deinitialization.
|
||||
:type sockets: List[SocketBase]
|
||||
:vartype sockets: List[SocketBase]
|
||||
|
||||
:ivar qi_session: The QI session object used for interaction with the robot/platform services.
|
||||
:type qi_session: None | ssl.SSLSession
|
||||
:vartype qi_session: None | qi.Session
|
||||
"""
|
||||
def __init__(self):
|
||||
self.is_initialized = False
|
||||
|
||||
Reference in New Issue
Block a user