mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
9 lines
207 B
Python
9 lines
207 B
Python
|
class AsyncClass:
|
||
|
async def do_coroutine(self):
|
||
|
"""A documented coroutine function"""
|
||
|
attr_coro_result = await _other_coro_func() # NOQA
|
||
|
|
||
|
|
||
|
async def _other_coro_func():
|
||
|
return "run"
|