Skip to main content

flake8 plugin to enforce new-style type hints (PEP 585)

Project description

flake8-pep585

This plugin enforces the changes proposed by PEP 585.

What does PEP 585 change?

Before PEP 585, you had to import stuff from typing to annotate some objects from the standard library:

  • For context managers, you'd import typing.ContextManager
  • For lists, you'd import typing.List
  • For callables, you'd import typing.Callable
  • ...and so on

With PEP 585, you can now use classes already present in the standard library. For example:

  • For a context manager giving an int, use contextlib.AbstractContextManager[int]
  • For a list of dicts mapping strs to ints, use list[dict[str, int]]
  • For a callable taking a float and returning an int, use collections.abc.Callable[[float], int]

typing.List, typing.Callable etc. are now deprecated. This is pretty hard to discover, since these imports don't cause a deprecation warning. IDEs don't help either: the "auto-import" feature often suggests importing a deprecated item.

This plugin lets you find these deprecated imports.

Examples

Direct import

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

Qualified import

from datetime import time
import typing as ty

def construct_time(match: ty.Match) -> time:
    return time(
        hour=int(match["hour"]),
        minute=int(match["minute"]),
    )
PEA001 typing.Match is deprecated, use re.Match instead. See PEP 585 for details

Installation

  1. Make sure you have flake8 installed
  2. Run pip install flake8-pep585
  3. Run flake8 on your code

Configuration

Via your setup.cfg file:

[flake8]
pep585-activation = always  # "always", "auto" or "never"

# Symbols that you're okay with being imported from `typing`
pep585-whitelisted-symbols =
    Callable
    Match
    Pattern

Via the CLI:

python -m flake8 --pep585-activation=always your_project/file.py

This only changes how the plugin behaves on Python 3.7.x and Python 3.8.x. By default ("auto"), it will be enabled if a from __future__ import annotations line is found.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flake8-pep585-0.1.7.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

flake8_pep585-0.1.7-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

Details for the file flake8-pep585-0.1.7.tar.gz.

File metadata

  • Download URL: flake8-pep585-0.1.7.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.7.12 Linux/5.10.161-1-MANJARO

File hashes

Hashes for flake8-pep585-0.1.7.tar.gz
Algorithm Hash digest
SHA256 363f9413aa12849ee9bfdc437c4e79cc4e0fb3af4abbb61cfed79860e349e0e0
MD5 2397780df4dba51964c9006b9476ac25
BLAKE2b-256 e5d495ea172225cfacf81a329e3c8af7f91807409cf70fadf32f09992d779a1b

See more details on using hashes here.

File details

Details for the file flake8_pep585-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: flake8_pep585-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.7.12 Linux/5.10.161-1-MANJARO

File hashes

Hashes for flake8_pep585-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 d5c7a5858382d6ca8c56554bd8bed090e12c378b98f6d7c6502abed9a40a658e
MD5 5304e38bf4db11a723bab4cdc3e0660b
BLAKE2b-256 d3b6ca9fb285698996160ff778db1115bebb4b46d4722d883a664646f027566b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page