Skip to content

ukyen8/flake8_deprecated

Repository files navigation

Flake8 Deprecated

A plugin to check using deprecated typing syntax.

Installation

  1. Clone this repo
git clone https://github.com/Shawnice/flake8_deprecated.git
  1. Run the following command
python setup.py install

Error codes

Code Error Message
T100 T100 found deprecated typing usage

Examples

import typing

foo = list[int]  # OK
foo = typing.List[int]  # Error: T100 found deprecated typing usage

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages