Skip to content
Advertisement

How to suppress “coroutine was never awaited” warning?

All search results on “coroutine was never awaited” are for people who were either trying to fire-and-forget or actually did forget to await. This is not my case.

I want to use a coroutine the same way I often use generators: I’m creating it here while I have all the variables handy, but I’m not sure yet whether I’ll ever need that to be run. Something like:

JavaScript

and elsewhere:

JavaScript

Advertisement

Answer

deceze‘s comment that you should not create the coroutine object until you are ready to await it is probably the most ideal solution.

But if that isn’t practical, you can use weakref.finalize() to call the coroutine object’s close() method just before it is garbage-collected.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement