Skip to content

Commit df0ecfd

Browse files
committed
add comment
1 parent a782f2d commit df0ecfd

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/rovr/functions/ipc_receiver.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,10 @@ async def conn(
201201
select = "select"
202202
elif selection == "replace":
203203
select = "reselect"
204-
worker = func(avail, select)
205-
await worker.wait()
204+
func(avail, select)
205+
# confusingly i see func to return a None type, not a worker
206+
# so im not sure whether I can even await it
207+
# await worker.wait()
206208
case _:
207209
ok = False
208210
err = "clipboard action is not valid"

0 commit comments

Comments
 (0)