Skip to content

Commit 0f203e0

Browse files
committed
Remove type specifications from docstrings
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent a48d43b commit 0f203e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/actor/test_actor.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)