flake8-future-annotations icon indicating copy to clipboard operation
flake8-future-annotations copied to clipboard

Verifies python 3.7+ files use `from __future__ import annotations`

Results 3 flake8-future-annotations issues
Sort by recently updated
recently updated
newest added

Currently the `setup.cfg` is configured with `packages = find:` without excluding this project's `tests` folder. This means that a fresh install of this package creates two directories within the `site-packages`...

These are all deprecated since 3.9, and can be rewritten before 3.9 with `from __future__ import annotations` (just like `Tuple` -> `tuple` etc) `typing.Callable`: Deprecated since version 3.9: [collections.abc.Callable](https://docs.python.org/3/library/collections.abc.html#collections.abc.Callable) now...

I wonder WDYT about moving this plugin under https://github.com/PyCQA in order to ensure its future. Same measure was taken by other plugin based tools like tox, pytest and sphinx. I...