Metadata-Version: 2.1
Name: flake8-wot
Version: 0.2.0
Summary: flake8 plugin which checks use of deprecated typing.List, typing.Dict, etc.
Home-page: https://github.com/mrijk/flake8-wot
Author: Maurits Rijk
Author-email: maurits.rijk@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: flake8 (>=3.7)

# flake8-wot
Flake8 plugin

This plugin warns if you are still importing List, Dict or Tuple (and others) from typing instead of using list, dict,
tuple.

See https://www.python.org/dev/peps/pep-0585/ for more information.

# Example

Running flake on a file test_wot.py with contents:

```python
from typing import List
```

will generate:

```
test_wot.py:1:1: WOT001 don't import type List
```

WOT is an abbreviation of 'Warn about Old school Types'



