aiofiles icon indicating copy to clipboard operation
aiofiles copied to clipboard

mypy issue when iterating on a file line-by-line

Open pietrodn opened this issue 3 years ago • 1 comments

mypy type checking fails on the following script:

import asyncio
from pathlib import Path

import aiofiles

FILENAME = Path.home() / ".zshrc"

async def main() -> None:
    async with aiofiles.open(FILENAME, "r") as input_fd:
        async for line in input_fd:
            print(line)

if __name__ == '__main__':
    asyncio.run(main())

The error:

$ mypy scratch.py

scratch.py:10: error: "Coroutine[Any, Any, Iterator[str]]" has no attribute "__anext__"
Found 1 error in 1 file (checked 1 source file)

I'm using mypy 0.812 (the latest version as of today) and Python 3.9.4. The errors appears with the default mypy configuration.

pietrodn avatar May 21 '21 16:05 pietrodn

aiofiles doesn't have type hints. They are maintained separately at typeshed: https://github.com/python/typeshed/tree/master/stubs/aiofiles

Akuli avatar Jul 04 '21 09:07 Akuli