```python3 import asyncio async def a(): pass def f(): return asyncio.create_task(a()) ``` ```shell $ flake8-async t.py t.py:7:12: ASYNC300 asyncio.create_task() called without saving the result ``` This should be allowed, IMO