Metadata-Version: 2.1
Name: flake8-pep585
Version: 0.1.2
Summary: flake8 plugin to enforce new-style type hints (PEP 585)
License: MPL-2.0
Author: decorator-factory
Author-email: decorator-factory@yandex.ru
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# flake8-pep585

This plugin enforces the changes proposed by PEP 585.
Currently, it only works for direct imports from the `typing` module.

```py
from typing import Callable
# PEA001: typing.Callable is deprecated, use collections.abc.Callable instead. See PEP 585 for details
```

