File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -122,9 +122,9 @@ def __init__(
122122 """Create an `EchoActor` instance.
123123
124124 Args:
125- name (str) : Name of the actor.
126- recv1 (Receiver[bool]) : A channel receiver for test boolean data.
127- recv2 (Receiver[bool]) : A channel receiver for test boolean data.
125+ name: Name of the actor.
126+ recv1: A channel receiver for test boolean data.
127+ recv2: A channel receiver for test boolean data.
128128 """
129129 super ().__init__ (name = name )
130130 self ._recv1 = recv1
@@ -135,7 +135,7 @@ async def _run(self) -> None:
135135 """Do computations depending on the selected input message.
136136
137137 Args:
138- output (Sender[OT]) : A channel sender, to send actor's results to.
138+ output: A channel sender, to send actor's results to.
139139 """
140140 print (f"{ self } started" )
141141 self .inc_restart_count ()
You can’t perform that action at this time.
0 commit comments