1 parent a782f2d commit df0ecfdCopy full SHA for df0ecfd
1 file changed
src/rovr/functions/ipc_receiver.py
@@ -201,8 +201,10 @@ async def conn(
201
select = "select"
202
elif selection == "replace":
203
select = "reselect"
204
- worker = func(avail, select)
205
- await worker.wait()
+ func(avail, select)
+ # 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()
208
case _:
209
ok = False
210
err = "clipboard action is not valid"
0 commit comments